Searched refs:isUnsignedComponent (Results 1 - 11 of 11) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A 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()
|
H A 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()
|
H A D | Surface.hpp | 346 static bool isUnsignedComponent(Format format, int component);
|
H A D | Surface.cpp | 2729 bool Surface::isUnsignedComponent(Format format, int component) in isUnsignedComponent() function in sw::Surface
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkFormat.hpp | 57 bool isUnsignedComponent(int component) const;
|
H A D | VkFormat.cpp | 1336 return isUnsignedComponent(0); in isUnsigned() 1339 bool Format::isUnsignedComponent(int component) const in isUnsignedComponent() function in vk::Format
|
H A D | VkImage.cpp | 1383 bool isUnsigned = format.isUnsignedComponent(0); in decodeASTC()
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
H A D | Blitter.cpp | 1466 value = Max(value, Float4(state.destFormat.isUnsignedComponent(0) ? 0.0f : -scale.x, in ApplyScaleAndClamp() 1467 state.destFormat.isUnsignedComponent(1) ? 0.0f : -scale.y, in ApplyScaleAndClamp() 1468 state.destFormat.isUnsignedComponent(2) ? 0.0f : -scale.z, in ApplyScaleAndClamp() 1469 state.destFormat.isUnsignedComponent(3) ? 0.0f : -scale.w)); in ApplyScaleAndClamp()
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | SamplerCore.cpp | 2517 return state.textureFormat.isUnsignedComponent(component); in hasUnsignedTextureComponent()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | PixelRoutine.cpp | 2058 one = As<Float4>(Surface::isUnsignedComponent(state.targetFormat[index], 0) ? Int4(0xFFFFFFFF) : Int4(0x7FFFFFFF)); in alphaBlend()
|
H A D | SamplerCore.cpp | 2580 return Surface::isUnsignedComponent(state.textureFormat, component); in hasUnsignedTextureComponent()
|
Completed in 30 milliseconds