Home
last modified time | relevance | path

Searched refs:setWrapT (Results 1 – 18 of 18) sorted by relevance

/external/angle/src/libANGLE/
DSampler.cpp82 void Sampler::setWrapT(const Context *context, GLenum wrapT) in setWrapT() function in gl::Sampler
84 mState.setWrapT(wrapT); in setWrapT()
DSampler.h47 void setWrapT(const Context *context, GLenum wrapT);
Dangletypes.cpp170 setWrapT(GL_REPEAT); in SamplerState()
234 bool SamplerState::setWrapT(GLenum wrapT) in setWrapT() function in gl::SamplerState
DTexture.h286 void setWrapT(const Context *context, GLenum wrapT);
Dangletypes.h310 bool setWrapT(GLenum wrapT);
DTexture.cpp878 void Texture::setWrapT(const Context *context, GLenum wrapT) in setWrapT() function in gl::Texture
882 if (mState.mSamplerState.setWrapT(wrapT)) in setWrapT()
Dqueryutils.cpp405 texture->setWrapT(context, ConvertToGLenum(pname, params[0])); in SetTexParameterBase()
547 sampler->setWrapT(context, ConvertToGLenum(pname, params[0])); in SetSamplerParameterBase()
/external/swiftshader/src/OpenGL/libGLESv2/
DSampler.h50 void setWrapT(GLenum wrapT) { mWrapModeT = wrapT; } in setWrapT() function
DTexture.h110 bool setWrapT(GLenum wrap);
DContext.cpp1772 …case GL_TEXTURE_WRAP_T: samplerObject->setWrapT(static_cast<GLenum>(param)); … in samplerParameteri()
1795 …case GL_TEXTURE_WRAP_T: samplerObject->setWrapT(static_cast<GLenum>(roundf(param))); … in samplerParameterf()
DTexture.cpp135 bool Texture::setWrapT(GLenum wrap) in setWrapT() function in es2::Texture
DlibGLESv2.cpp4653 if(!texture->setWrapT((GLenum)param)) in TexParameterf()
4777 if(!texture->setWrapT((GLenum)param)) in TexParameteri()
/external/angle/src/libANGLE/renderer/gl/
DSamplerGL.cpp96 …mAppliedSamplerState, GL_TEXTURE_WRAP_T, &gl::SamplerState::getWrapT, &gl::SamplerState::setWrapT); in syncState()
DTextureGL.cpp1471 mAppliedSampler.setWrapT(mState.getSamplerState().getWrapT()); in syncState()
/external/swiftshader/src/OpenGL/libGLES_CM/
DTexture.h61 bool setWrapT(GLenum wrap);
DTexture.cpp118 bool Texture::setWrapT(GLenum wrap) in setWrapT() function in es1::Texture
DlibGLES_CM.cpp4333 if(!texture->setWrapT((GLenum)param)) in TexParameterf()
4403 if(!texture->setWrapT((GLenum)param)) in TexParameteri()
/external/angle/src/libANGLE/renderer/vulkan/
DTextureVk.cpp1739 samplerState.setWrapT(GL_CLAMP_TO_EDGE); in generateMipmapsWithCompute()