/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineSamplerBorderSwizzleTests.cpp | 328 tcu::Vector<T, 4> applySwizzle (const tcu::Vector<T, 4>& orig, const VkComponentMapping& mapping) in applySwizzle() function 369 result = applySwizzle(result, params.componentMapping); in getExpectedColor() 490 threshold = applySwizzle(threshold, params.componentMapping); in comparePixelToColorClearValue() 536 threshold = applySwizzle(threshold, params.componentMapping); in comparePixelToColorClearValue() 582 threshold = applySwizzle(threshold, params.componentMapping); in comparePixelToColorClearValue() 631 threshold = applySwizzle(threshold, params.componentMapping); in comparePixelToColorClearValue()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineSamplerBorderSwizzleTests.cpp | 352 tcu::Vector<T, 4> applySwizzle (const tcu::Vector<T, 4>& orig, const VkComponentMapping& mapping) in applySwizzle() function 393 result = applySwizzle(result, params.componentMapping); in getExpectedColor() 600 threshold = applySwizzle(threshold, thresholdComponentMapping); in comparePixelToColorClearValue() 646 threshold = applySwizzle(threshold, thresholdComponentMapping); in comparePixelToColorClearValue() 692 threshold = applySwizzle(threshold, thresholdComponentMapping); in comparePixelToColorClearValue() 741 threshold = applySwizzle(threshold, thresholdComponentMapping); in comparePixelToColorClearValue()
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | SamplerCore.hpp | 67 Float4 applySwizzle(const Vector4f &c, VkComponentSwizzle swizzle, bool integer);
|
H A D | SamplerCore.cpp | 197 c.x = applySwizzle(col, state.swizzle.r, integer); in sampleTexture() 198 c.y = applySwizzle(col, state.swizzle.g, integer); in sampleTexture() 199 c.z = applySwizzle(col, state.swizzle.b, integer); in sampleTexture() 200 c.w = applySwizzle(col, state.swizzle.a, integer); in sampleTexture() 224 Float4 SamplerCore::applySwizzle(const Vector4f &c, VkComponentSwizzle swizzle, bool integer) in applySwizzle() function in sw::SamplerCore
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | SamplerCore.cpp | 22 void applySwizzle(sw::SwizzleType swizzle, sw::Short4& s, const sw::Vector4s& c) in applySwizzle() function 36 void applySwizzle(sw::SwizzleType swizzle, sw::Float4& f, const sw::Vector4f& c) in applySwizzle() function 264 applySwizzle(state.swizzleR, c.x, col); in sampleTexture() 265 applySwizzle(state.swizzleG, c.y, col); in sampleTexture() 266 applySwizzle(state.swizzleB, c.z, col); in sampleTexture() 267 applySwizzle(state.swizzleA, c.w, col); in sampleTexture() 492 applySwizzle(state.swizzleR, c.x, col); in sampleTexture() 493 applySwizzle(state.swizzleG, c.y, col); in sampleTexture() 494 applySwizzle(state.swizzleB, c.z, col); in sampleTexture() 495 applySwizzle(stat in sampleTexture() [all...] |
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLSPIRVCodeGenerator.h | 118 virtual bool applySwizzle(const ComponentArray& components, const Type& newType) { in applySwizzle() function in SkSL::SPIRVCodeGenerator::LValue
|
H A D | SkSLSPIRVCodeGenerator.cpp | 1935 bool applySwizzle(const ComponentArray& components, const Type& newType) override { 2056 if (lvalue->applySwizzle(swizzle.components(), type)) { in getLValue()
|