Searched refs:decodeETC2 (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/src/Device/ |
D | Surface.hpp | 304 static void decodeETC2(Buffer &internal, Buffer &external, int nbAlphaBits, bool isSRGB);
|
D | Surface.cpp | 1442 …case VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK: decodeETC2(destination, source, 0, fa… in update() 1443 …case VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK: decodeETC2(destination, source, 0, true… in update() 1444 …case VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK: decodeETC2(destination, source, 1, false); break; // FI… in update() 1445 …case VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK: decodeETC2(destination, source, 1, true); break; // FIXM… in update() 1446 …case VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK: decodeETC2(destination, source, 8, false… in update() 1447 …case VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK: decodeETC2(destination, source, 8, true); break… in update() 1857 void Surface::decodeETC2(Buffer &internal, Buffer &external, int nbAlphaBits, bool isSRGB) in decodeETC2() function in sw::Surface
|
/external/swiftshader/src/Renderer/ |
D | Surface.hpp | 481 static void decodeETC2(Buffer &internal, Buffer &external, int nbAlphaBits, bool isSRGB);
|
D | Surface.cpp | 1906 …case FORMAT_RGB8_ETC2: decodeETC2(destination, source, 0, false); break; // F… in update() 1907 …case FORMAT_SRGB8_ETC2: decodeETC2(destination, source, 0, true); break; // F… in update() 1908 …case FORMAT_RGB8_PUNCHTHROUGH_ALPHA1_ETC2: decodeETC2(destination, source, 1, false); break; // F… in update() 1909 …case FORMAT_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2: decodeETC2(destination, source, 1, true); break; // F… in update() 1910 …case FORMAT_RGBA8_ETC2_EAC: decodeETC2(destination, source, 8, false); break; // F… in update() 1911 …case FORMAT_SRGB8_ALPHA8_ETC2_EAC: decodeETC2(destination, source, 8, true); break; // F… in update() 2592 void Surface::decodeETC2(Buffer &internal, Buffer &external, int nbAlphaBits, bool isSRGB) in decodeETC2() function in sw::Surface
|