/external/deqp/framework/common/ |
D | tcuTexture.cpp | 1696 case tcu::Sampler::CLAMP_TO_BORDER: in wrap() 1730 case tcu::Sampler::CLAMP_TO_BORDER: in unnormalize() 1841 if (sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) in sampleNearest1D() 1858 if ((sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) || in sampleNearest2D() 1859 (sampler.wrapT == Sampler::CLAMP_TO_BORDER && !deInBounds32(y, 0, height))) in sampleNearest2D() 1879 if ((sampler.wrapS == Sampler::CLAMP_TO_BORDER && !deInBounds32(x, 0, width)) || in sampleNearest3D() 1880 (sampler.wrapT == Sampler::CLAMP_TO_BORDER && !deInBounds32(y, 0, height)) || in sampleNearest3D() 1881 (sampler.wrapR == Sampler::CLAMP_TO_BORDER && !deInBounds32(z, 0, depth))) in sampleNearest3D() 1903 bool i0UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i0, 0, w); in sampleLinear1D() 1904 bool i1UseBorder = sampler.wrapS == Sampler::CLAMP_TO_BORDER && !de::inBounds(i1, 0, w); in sampleLinear1D() [all …]
|
D | tcuTexVerifierUtil.cpp | 149 case tcu::Sampler::CLAMP_TO_BORDER: in wrap()
|
D | tcuTexture.hpp | 195 CLAMP_TO_BORDER, //! Use border color at edge enumerator
|
/external/deqp/external/openglcts/modules/common/ |
D | glcExtTokens.cpp | 70 CLAMP_TO_BORDER = GL_CLAMP_TO_BORDER; in init() 195 CLAMP_TO_BORDER = GL_CLAMP_TO_BORDER_EXT; in init()
|
D | glcExtTokens.hpp | 69 glw::GLenum CLAMP_TO_BORDER; member
|
/external/mesa3d/docs/gallium/cso/ |
D | sampler.rst | 33 CLAMP_TO_BORDER. The behavior may also vary depending on linear vs. 41 coordinate is computed. Then, regular CLAMP_TO_BORDER is applied to the
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.texture.border_clamp.txt | 45 CLAMP_TO_BORDER, and then proceed to render the texture to screen. The
|
/external/deqp/external/openglcts/modules/glesext/texture_border_clamp/ |
D | esextcTextureBorderClampSamplingTexture.cpp | 482 gl.samplerParameteri(m_sampler_id, GL_TEXTURE_WRAP_S, m_glExtTokens.CLAMP_TO_BORDER); in iterate() 484 gl.samplerParameteri(m_sampler_id, GL_TEXTURE_WRAP_R, m_glExtTokens.CLAMP_TO_BORDER); in iterate() 486 gl.samplerParameteri(m_sampler_id, GL_TEXTURE_WRAP_T, m_glExtTokens.CLAMP_TO_BORDER); in iterate()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_texture.c | 49 NV30_WRAP(CLAMP_TO_BORDER); in wrap_mode()
|
/external/deqp/external/openglcts/modules/glesext/gpu_shader5/ |
D | esextcGPUShader5TextureGatherOffset.cpp | 1010 if (m_glExtTokens.CLAMP_TO_BORDER == m_texture_wrap_mode) in prepareTexture() 1039 gl.samplerParameteri(m_sampler_object_id, GL_TEXTURE_WRAP_S, m_glExtTokens.CLAMP_TO_BORDER); in prepareTexture() 1040 gl.samplerParameteri(m_sampler_object_id, GL_TEXTURE_WRAP_T, m_glExtTokens.CLAMP_TO_BORDER); in prepareTexture() 1601 out_wrap_mode = m_glExtTokens.CLAMP_TO_BORDER; in getTextureWrapMode() 2612 out_wrap_mode = m_glExtTokens.CLAMP_TO_BORDER; in getTextureWrapMode()
|
/external/deqp/external/vulkancts/modules/vulkan/descriptor_indexing/ |
D | vktDescriptorSetsIndexingTests.cpp | 3624 tcu::Sampler::CLAMP_TO_BORDER, // wrapS in createAndPopulateDescriptors() 3625 tcu::Sampler::CLAMP_TO_BORDER, // wrapT in createAndPopulateDescriptors() 3626 tcu::Sampler::CLAMP_TO_BORDER, // wrapR in createAndPopulateDescriptors() 3711 tcu::Sampler::CLAMP_TO_BORDER, // wrapS in createAndPopulateDescriptors() 3712 tcu::Sampler::CLAMP_TO_BORDER, // wrapT in createAndPopulateDescriptors() 3713 tcu::Sampler::CLAMP_TO_BORDER, // wrapR in createAndPopulateDescriptors() 3825 tcu::Sampler::CLAMP_TO_BORDER, // wrapS in createAndPopulateDescriptors() 3826 tcu::Sampler::CLAMP_TO_BORDER, // wrapT in createAndPopulateDescriptors() 3827 tcu::Sampler::CLAMP_TO_BORDER, // wrapR in createAndPopulateDescriptors()
|
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
D | vktTextureFilteringTests.cpp | 1064 { "clamp_to_border", Sampler::CLAMP_TO_BORDER }, in populateTextureFilteringTests() 1339 …Parameters.wrapS = ((fmtNdx ^ filterNdx) & 1) ? Sampler::CLAMP_TO_EDGE : Sampler::CLAMP_TO_BORDER; in populateTextureFilteringTests() 1340 …Parameters.wrapT = ((fmtNdx ^ filterNdx) & 2) ? Sampler::CLAMP_TO_EDGE : Sampler::CLAMP_TO_BORDER; in populateTextureFilteringTests() 1374 …arameters.wrapS = ((sizeNdx ^ filterNdx) & 1) ? Sampler::CLAMP_TO_EDGE : Sampler::CLAMP_TO_BORDER; in populateTextureFilteringTests() 1375 …arameters.wrapT = ((sizeNdx ^ filterNdx) & 2) ? Sampler::CLAMP_TO_EDGE : Sampler::CLAMP_TO_BORDER; in populateTextureFilteringTests()
|
/external/deqp/framework/opengl/ |
D | gluTextureUtil.cpp | 627 case GL_CLAMP_TO_BORDER: return tcu::Sampler::CLAMP_TO_BORDER; in mapGLWrapMode() 755 case tcu::Sampler::CLAMP_TO_BORDER: return GL_CLAMP_TO_BORDER; in getGLWrapMode()
|
/external/deqp/external/vulkancts/modules/vulkan/binding_model/ |
D | vktBindingDescriptorCopyTests.cpp | 1317 …ampler = tcu::Sampler(tcu::Sampler::CLAMP_TO_BORDER, tcu::Sampler::CLAMP_TO_BORDER, tcu::Sampler… in init()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkImageUtil.cpp | 3687 case tcu::Sampler::CLAMP_TO_BORDER: return VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER; in mapWrapMode() 3914 case VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER: return tcu::Sampler::CLAMP_TO_BORDER; in mapVkSamplerAddressMode()
|