Home
last modified time | relevance | path

Searched refs:wrapR (Results 1 – 21 of 21) sorted by relevance

/external/swiftshader/src/OpenGL/libGLESv2/
DSampler.h50 void setWrapR(GLenum wrapR) { mWrapModeR = wrapR; } in setWrapR() argument
DContext.cpp3021 GLenum wrapS, wrapT, wrapR, minFilter, magFilter; in applyTextures() local
3029 wrapR = samplerObject->getWrapR(); in applyTextures()
3039 wrapR = texture->getWrapR(); in applyTextures()
3056 device->setAddressingModeW(samplerType, samplerIndex, es2sw::ConvertTextureWrap(wrapR)); in applyTextures()
/external/deqp/modules/glshared/
DglsSamplerObjectTest.hpp49 GLenum wrapR; member
107 GLenum wrapR; member
DglsSamplerObjectTest.cpp93 gl.texParameteri(target, GL_TEXTURE_WRAP_R, state.wrapR); in setTextureState()
111 gl.samplerParameteri(sampler, GL_TEXTURE_WRAP_R, state.wrapR); in setSamplerState()
605 gl.texParameteri(target, GL_TEXTURE_WRAP_R, state.wrapR); in setTextureState()
623 gl.samplerParameteri(sampler, GL_TEXTURE_WRAP_R, state.wrapR); in setSamplerState()
DglsShaderRenderCase.cpp528 gl.texParameteri(texTarget, GL_TEXTURE_WRAP_R, glu::getGLWrapMode(sampler.wrapR)); in setupDefaultInputs()
/external/deqp/framework/opengl/
DgluTextureUtil.hpp66 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 wrapT, deUint32 wrapR, deUint32 minFil…
DgluTextureUtil.cpp700 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 wrapT, deUint32 wrapR, deUint32 minFilter, deUi… in mapGLSampler() argument
702 return tcu::Sampler(mapGLWrapMode(wrapS), mapGLWrapMode(wrapT), mapGLWrapMode(wrapR), in mapGLSampler()
/external/deqp/modules/gles3/functional/
Des3fTextureFilteringTests.cpp924 …2 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 wrapR, deUint32 internal…
974 …2 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 wrapR, deUint32 internal… in Texture3DFilteringCase() argument
980 , m_wrapR (wrapR) in Texture3DFilteringCase()
1654 deUint32 wrapR = GL_REPEAT; in init() local
1662 wrapS, wrapT, wrapR, in init()
1682 deUint32 wrapR = GL_REPEAT; in init() local
1691 wrapS, wrapT, wrapR, in init()
1715 deUint32 wrapR = wrapModes[wrapRNdx].mode; in init() local
1724 wrapS, wrapT, wrapR, in init()
Des3fTextureMipmapTests.cpp1088 deUint32 wrapR,
1117 …e coordType, deUint32 minFilter, deUint32 wrapS, deUint32 wrapT, deUint32 wrapR, deUint32 format, … in Texture3DMipmapCase() argument
1123 , m_wrapR (wrapR) in Texture3DMipmapCase()
2121 const deUint32 wrapR = GL_CLAMP_TO_EDGE; in iterate() local
2143 sampleParams.sampler = glu::mapGLSampler(wrapS, wrapT, wrapR, m_minFilter, magFilter); in iterate()
2152 gl.texParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_R, wrapR); in iterate()
Des3fVertexTextureTests.cpp1470 …har* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 wrapR);
1498 …char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 wrapR) in Vertex3DTextureCase() argument
1504 , m_wrapR (wrapR) in Vertex3DTextureCase()
/external/deqp/framework/common/
DtcuTexLookupVerifier.cpp44 isWrapModeSupported(sampler.wrapR); in isSamplerSupported()
610 const int z = wrap(sampler.wrapR, k, level.getDepth()); in isNearestSampleResultValid()
769 const int z0 = wrap(sampler.wrapR, k , d); in isLinearSampleResultValid()
770 const int z1 = wrap(sampler.wrapR, k+1, d); in isLinearSampleResultValid()
930 …0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0, h0), wrap(sampler.wrapR, k0, d0)); in isNearestMipmapLinearSampleResultValid()
931 …1, sampler, wrap(sampler.wrapS, i1, w1), wrap(sampler.wrapT, j1, h1), wrap(sampler.wrapR, k1, d1)); in isNearestMipmapLinearSampleResultValid()
1188 const int z0 = wrap(sampler.wrapR, k0 , d0); in isLinearMipmapLinearSampleResultValid()
1189 const int z1 = wrap(sampler.wrapR, k0+1, d0); in isLinearMipmapLinearSampleResultValid()
1220 const int z0 = wrap(sampler.wrapR, k1 , d1); in isLinearMipmapLinearSampleResultValid()
1221 const int z1 = wrap(sampler.wrapR, k1+1, d1); in isLinearMipmapLinearSampleResultValid()
DtcuTexture.hpp234 WrapMode wrapR; member in tcu::Sampler
275 , wrapR (wrapR_) in Sampler()
291 , wrapR (WRAPMODE_LAST) in Sampler()
DtcuTexture.cpp1787 (sampler.wrapR == Sampler::CLAMP_TO_BORDER && !deInBounds32(z, 0, depth))) in sampleNearest3D()
1792 int k = wrap(sampler.wrapR, z, depth); in sampleNearest3D()
1942 int k0 = wrap(sampler.wrapR, z0, depth); in sampleLinear3D()
1943 int k1 = wrap(sampler.wrapR, z1, depth); in sampleLinear3D()
1953 bool k0UseBorder = sampler.wrapR == Sampler::CLAMP_TO_BORDER && !de::inBounds(k0, 0, depth); in sampleLinear3D()
1954 bool k1UseBorder = sampler.wrapR == Sampler::CLAMP_TO_BORDER && !de::inBounds(k1, 0, depth); in sampleLinear3D()
2057 w = unnormalize(sampler.wrapR, r, m_size.z()); in sample3DOffset()
DtcuTexCompareVerifier.cpp43 isWrapModeSupported(sampler.wrapR); in isSamplerSupported()
/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktTextureFilteringTests.cpp744 testParameters.wrapR == Sampler::MIRRORED_ONCE) && in Texture3DFilteringTestInstance()
804 …eSampler(m_testParameters.wrapS, m_testParameters.wrapT, m_testParameters.wrapR, m_testParameters.… in iterate()
1349 testParameters.wrapR = Sampler::REPEAT_GL; in populateTextureFilteringTests()
1381 testParameters.wrapR = Sampler::REPEAT_GL; in populateTextureFilteringTests()
1411 testParameters.wrapR = wrapModes[wrapRNdx].mode; in populateTextureFilteringTests()
DvktTextureTestUtil.hpp321 tcu::Sampler::WrapMode wrapR; member
DvktTextureMipmapTests.cpp1503 const tcu::Sampler::WrapMode wrapR = Sampler::CLAMP_TO_EDGE; in iterate() local
1524 …refParams.sampler = util::createSampler(wrapS, wrapT, wrapR, m_testParameters.minFilter, magFilte… in iterate()
2043 testParameters.wrapR = wrapModes[wrapMode].mode; in populateTextureMipmappingTests()
2077 testParameters.wrapR = Sampler::REPEAT_GL; in populateTextureMipmappingTests()
DvktTextureTestUtil.cpp1789 : wrapR (tcu::Sampler::REPEAT_GL) in Texture3DTestCaseParameters()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp426 m_emptyTex3D.getSampler().wrapR = tcu::Sampler::CLAMP_TO_EDGE; in ReferenceContext()
1854 tcu::Sampler::WrapMode wrapR = mapGLWrapMode(value); in texParameteri() local
1855 RC_IF_ERROR(wrapR == tcu::Sampler::WRAPMODE_LAST, GL_INVALID_VALUE, RC_RET_VOID); in texParameteri()
1856 texture->getSampler().wrapR = wrapR; in texParameteri()
/external/deqp/external/vulkancts/framework/vulkan/
DvkImageUtil.cpp2225 mapWrapMode(sampler.wrapR), // addressW in mapSampler()
/external/deqp/modules/gles31/functional/
Des31fTextureBorderClampTests.cpp2175 …gl.texParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_R, glu::getGLWrapMode(samplerParams.sampler.wrapR in renderTo()