Searched refs:getWrapR (Results 1 – 18 of 18) sorted by relevance
/external/angle/src/libANGLE/ |
D | Sampler.cpp | 99 GLenum Sampler::getWrapR() const in getWrapR() function in gl::Sampler 101 return mState.getWrapR(); in getWrapR()
|
D | Sampler.h | 51 GLenum getWrapR() const;
|
D | Texture.h | 290 GLenum getWrapR() const;
|
D | angletypes.h | 312 GLenum getWrapR() const { return mWrapR; } in getWrapR() function
|
D | Texture.cpp | 901 GLenum Texture::getWrapR() const in getWrapR() function in gl::Texture 903 return mState.mSamplerState.getWrapR(); in getWrapR()
|
D | queryutils.cpp | 276 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapR()); in QueryTexParameterBase() 506 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapR()); in QuerySamplerParameterBase()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Sampler.h | 62 GLenum getWrapR() const { return mWrapModeR; } in getWrapR() function
|
D | Texture.h | 129 GLenum getWrapR() const { return mWrapR; } in getWrapR() function
|
D | Context.cpp | 1819 case GL_TEXTURE_WRAP_R: return static_cast<GLint>(samplerObject->getWrapR()); in getSamplerParameteri() 1842 case GL_TEXTURE_WRAP_R: return static_cast<GLfloat>(samplerObject->getWrapR()); in getSamplerParameterf() 3171 wrapR = samplerObject->getWrapR(); in applyTextures() 3184 wrapR = texture->getWrapR(); in applyTextures()
|
D | libGLESv2.cpp | 3314 *params = (GLfloat)texture->getWrapR(); in GetTexParameterfv() 3394 *params = texture->getWrapR(); in GetTexParameteriv()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | SamplerGL.cpp | 97 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_R, &gl::SamplerState::getWrapR, &gl::SamplerStat… in syncState()
|
D | TextureGL.cpp | 1477 mAppliedSampler.setWrapR(mState.getSamplerState().getWrapR()); in syncState() 1480 GL_TEXTURE_WRAP_R, mAppliedSampler.getWrapR())); in syncState()
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | RenderStateCache.cpp | 285 samplerDesc.AddressW = gl_d3d11::ConvertTextureWrap(samplerState.getWrapR()); in getSamplerState()
|
D | StateManager11.cpp | 424 GLenum wrapR = samplerState.getWrapR(); in updateSamplerMetadata()
|
/external/angle/src/libANGLE/capture/ |
D | FrameCapture.cpp | 2464 if (textureSamplerState.getWrapR() != defaultSamplerState.getWrapR()) in CaptureSharedContextMidExecutionSetup() 2466 capTexParam(GL_TEXTURE_WRAP_R, textureSamplerState.getWrapR()); in CaptureSharedContextMidExecutionSetup() 2837 if (sampler->getWrapR() != defaultSamplerState.getWrapR()) in CaptureSharedContextMidExecutionSetup() 2840 sampler->getWrapR())); in CaptureSharedContextMidExecutionSetup()
|
D | frame_capture_utils.cpp | 843 json->addScalar("WrapR", samplerState.getWrapR()); in SerializeSamplerState()
|
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_state_cache.mm | 455 rAddressMode = GetSamplerAddressMode(glState.getWrapR());
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | vk_cache_utils.cpp | 3195 SetBitField(mAddressModeW, gl_vk::GetSamplerAddressMode(samplerState.getWrapR())); in update()
|