Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/
DSampler.cpp71 void Sampler::setWrapS(const Context *context, GLenum wrapS) in setWrapS() function in gl::Sampler
73 mState.setWrapS(wrapS); in setWrapS()
DSampler.h44 void setWrapS(const Context *context, GLenum wrapS);
Dangletypes.cpp169 setWrapS(GL_REPEAT); in SamplerState()
223 bool SamplerState::setWrapS(GLenum wrapS) in setWrapS() function in gl::SamplerState
DTexture.h283 void setWrapS(const Context *context, GLenum wrapS);
Dangletypes.h306 bool setWrapS(GLenum wrapS);
DTexture.cpp865 void Texture::setWrapS(const Context *context, GLenum wrapS) in setWrapS() function in gl::Texture
867 if (mState.mSamplerState.setWrapS(wrapS)) in setWrapS()
Dqueryutils.cpp402 texture->setWrapS(context, ConvertToGLenum(pname, params[0])); in SetTexParameterBase()
544 sampler->setWrapS(context, ConvertToGLenum(pname, params[0])); in SetSamplerParameterBase()
/external/swiftshader/src/OpenGL/libGLESv2/
DSampler.h49 void setWrapS(GLenum wrapS) { mWrapModeS = wrapS; } in setWrapS() function
DTexture.h109 bool setWrapS(GLenum wrap);
DContext.cpp1771 …case GL_TEXTURE_WRAP_S: samplerObject->setWrapS(static_cast<GLenum>(param)); … in samplerParameteri()
1794 …case GL_TEXTURE_WRAP_S: samplerObject->setWrapS(static_cast<GLenum>(roundf(param))); … in samplerParameterf()
DTexture.cpp115 bool Texture::setWrapS(GLenum wrap) in setWrapS() function in es2::Texture
DlibGLESv2.cpp4647 if(!texture->setWrapS((GLenum)param)) in TexParameterf()
4771 if(!texture->setWrapS((GLenum)param)) in TexParameteri()
/external/angle/src/libANGLE/renderer/gl/
DSamplerGL.cpp95 …mAppliedSamplerState, GL_TEXTURE_WRAP_S, &gl::SamplerState::getWrapS, &gl::SamplerState::setWrapS); in syncState()
DTextureGL.cpp1465 mAppliedSampler.setWrapS(mState.getSamplerState().getWrapS()); in syncState()
/external/swiftshader/src/OpenGL/libGLES_CM/
DTexture.h60 bool setWrapS(GLenum wrap);
DTexture.cpp98 bool Texture::setWrapS(GLenum wrap) in setWrapS() function in es1::Texture
DlibGLES_CM.cpp4327 if(!texture->setWrapS((GLenum)param)) in TexParameterf()
4397 if(!texture->setWrapS((GLenum)param)) in TexParameteri()
/external/angle/src/libANGLE/renderer/vulkan/
DTextureVk.cpp1738 samplerState.setWrapS(GL_CLAMP_TO_EDGE); in generateMipmapsWithCompute()