Home
last modified time | relevance | path

Searched refs:decodeETC2 (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Vulkan/
DVkImage.hpp114 void decodeETC2(const VkImageSubresourceRange &subresourceRange) const;
DVkImage.cpp990 decodeETC2(subresourceRange); in prepareForSampling()
1079 void Image::decodeETC2(const VkImageSubresourceRange &subresourceRange) const in decodeETC2() function in vk::Image
/external/swiftshader/src/Renderer/
DSurface.hpp481 static void decodeETC2(Buffer &internal, Buffer &external, int nbAlphaBits, bool isSRGB);
DSurface.cpp1906 …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