Searched refs:isUnsignedComponent (Results 1 – 12 of 12) sorted by relevance
/external/swiftshader/src/Renderer/ |
D | Sampler.cpp | 388 return Surface::isUnsignedComponent(internalTextureFormat, 0) && in hasUnsignedTexture() 389 Surface::isUnsignedComponent(internalTextureFormat, 1) && in hasUnsignedTexture() 390 Surface::isUnsignedComponent(internalTextureFormat, 2) && in hasUnsignedTexture() 391 Surface::isUnsignedComponent(internalTextureFormat, 3); in hasUnsignedTexture()
|
D | Blitter.cpp | 1135 value = Max(value, Float4(Surface::isUnsignedComponent(state.destFormat, 0) ? 0.0f : -scale.x, in ApplyScaleAndClamp() 1136 Surface::isUnsignedComponent(state.destFormat, 1) ? 0.0f : -scale.y, in ApplyScaleAndClamp() 1137 Surface::isUnsignedComponent(state.destFormat, 2) ? 0.0f : -scale.z, in ApplyScaleAndClamp() 1138 Surface::isUnsignedComponent(state.destFormat, 3) ? 0.0f : -scale.w)); in ApplyScaleAndClamp()
|
D | Surface.hpp | 374 static bool isUnsignedComponent(Format format, int component);
|
D | Surface.cpp | 2896 bool Surface::isUnsignedComponent(Format format, int component) in isUnsignedComponent() function in sw::Surface
|
/external/swiftshader/src/Vulkan/ |
D | VkFormat.h | 53 bool isUnsignedComponent(int component) const;
|
D | VkFormat.cpp | 1433 bool Format::isUnsignedComponent(int component) const in isUnsignedComponent() function in vk::Format
|
D | VkImage.cpp | 1167 bool isUnsigned = format.isUnsignedComponent(0); in decodeASTC()
|
/external/swiftshader/src/Device/ |
D | Blitter.cpp | 1345 value = Max(value, Float4(state.destFormat.isUnsignedComponent(0) ? 0.0f : -scale.x, in ApplyScaleAndClamp() 1346 state.destFormat.isUnsignedComponent(1) ? 0.0f : -scale.y, in ApplyScaleAndClamp() 1347 state.destFormat.isUnsignedComponent(2) ? 0.0f : -scale.z, in ApplyScaleAndClamp() 1348 state.destFormat.isUnsignedComponent(3) ? 0.0f : -scale.w)); in ApplyScaleAndClamp()
|
/external/swiftshader/src/Pipeline/ |
D | PixelRoutine.cpp | 1898 one = As<Float4>(format.isUnsignedComponent(0) ? Int4(0xFFFFFFFF) : Int4(0x7FFFFFFF)); in alphaBlend() 2092 if(format.isUnsignedComponent(0)) { oC.x = Max(oC.x, Float4(0.0f)); } in alphaBlend() 2093 if(format.isUnsignedComponent(1)) { oC.y = Max(oC.y, Float4(0.0f)); } in alphaBlend() 2094 if(format.isUnsignedComponent(2)) { oC.z = Max(oC.z, Float4(0.0f)); } in alphaBlend() 2095 if(format.isUnsignedComponent(3)) { oC.w = Max(oC.w, Float4(0.0f)); } in alphaBlend()
|
D | SamplerCore.cpp | 2522 return state.textureFormat.isUnsignedComponent(component); in hasUnsignedTextureComponent()
|
/external/swiftshader/src/Shader/ |
D | PixelRoutine.cpp | 2058 …one = As<Float4>(Surface::isUnsignedComponent(state.targetFormat[index], 0) ? Int4(0xFFFFFFFF) : I… in alphaBlend()
|
D | SamplerCore.cpp | 2580 return Surface::isUnsignedComponent(state.textureFormat, component); in hasUnsignedTextureComponent()
|