Home
last modified time | relevance | path

Searched refs:setWrapR (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/
DSampler.cpp93 void Sampler::setWrapR(const Context *context, GLenum wrapR) in setWrapR() function in gl::Sampler
95 mState.setWrapR(wrapR); in setWrapR()
DSampler.h50 void setWrapR(const Context *context, GLenum wrapR);
Dangletypes.cpp173 setWrapR(GL_REPEAT); in SamplerState()
247 bool SamplerState::setWrapR(GLenum wrapR) in setWrapR() function in gl::SamplerState
DTexture.h295 void setWrapR(const Context *context, GLenum wrapR);
Dangletypes.h348 bool setWrapR(GLenum wrapR);
DTexture.cpp900 void Texture::setWrapR(const Context *context, GLenum wrapR) in setWrapR() function in gl::Texture
902 if (mState.mSamplerState.setWrapR(wrapR)) in setWrapR()
Dqueryutils.cpp411 texture->setWrapR(context, ConvertToGLenum(pname, params[0])); in SetTexParameterBase()
556 sampler->setWrapR(context, ConvertToGLenum(pname, params[0])); in SetSamplerParameterBase()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DSampler.h51 void setWrapR(GLenum wrapR) { mWrapModeR = wrapR; } in setWrapR() function
DTexture.h111 bool setWrapR(GLenum wrap);
DContext.cpp1773 …case GL_TEXTURE_WRAP_R: samplerObject->setWrapR(static_cast<GLenum>(param)); … in samplerParameteri()
1796 …case GL_TEXTURE_WRAP_R: samplerObject->setWrapR(static_cast<GLenum>(roundf(param))); … in samplerParameterf()
DTexture.cpp155 bool Texture::setWrapR(GLenum wrap) in setWrapR() function in es2::Texture
DlibGLESv2.cpp4659 if(!texture->setWrapR((GLenum)param)) in TexParameterf()
4783 if(!texture->setWrapR((GLenum)param)) in TexParameteri()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DSamplerGL.cpp97 …mAppliedSamplerState, GL_TEXTURE_WRAP_R, &gl::SamplerState::getWrapR, &gl::SamplerState::setWrapR); in syncState()
DTextureGL.cpp1481 mAppliedSampler.setWrapR(mState.getSamplerState().getWrapR()); in syncState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DTextureVk.cpp1814 samplerState.setWrapR(GL_CLAMP_TO_EDGE); in generateMipmapsWithCompute()