Home
last modified time | relevance | path

Searched refs:isUnsignedComponent (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/src/Renderer/
DSampler.cpp388 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()
DBlitter.cpp1135 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()
DSurface.hpp374 static bool isUnsignedComponent(Format format, int component);
DSurface.cpp2896 bool Surface::isUnsignedComponent(Format format, int component) in isUnsignedComponent() function in sw::Surface
/external/swiftshader/src/Vulkan/
DVkFormat.h53 bool isUnsignedComponent(int component) const;
DVkFormat.cpp1433 bool Format::isUnsignedComponent(int component) const in isUnsignedComponent() function in vk::Format
DVkImage.cpp1167 bool isUnsigned = format.isUnsignedComponent(0); in decodeASTC()
/external/swiftshader/src/Device/
DBlitter.cpp1345 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/
DPixelRoutine.cpp1898 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()
DSamplerCore.cpp2522 return state.textureFormat.isUnsignedComponent(component); in hasUnsignedTextureComponent()
/external/swiftshader/src/Shader/
DPixelRoutine.cpp2058 …one = As<Float4>(Surface::isUnsignedComponent(state.targetFormat[index], 0) ? Int4(0xFFFFFFFF) : I… in alphaBlend()
DSamplerCore.cpp2580 return Surface::isUnsignedComponent(state.textureFormat, component); in hasUnsignedTextureComponent()