Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/
DSampler.cpp99 GLenum Sampler::getWrapR() const in getWrapR() function in gl::Sampler
101 return mState.getWrapR(); in getWrapR()
DSampler.h51 GLenum getWrapR() const;
DTexture.h290 GLenum getWrapR() const;
Dangletypes.h312 GLenum getWrapR() const { return mWrapR; } in getWrapR() function
DTexture.cpp901 GLenum Texture::getWrapR() const in getWrapR() function in gl::Texture
903 return mState.mSamplerState.getWrapR(); in getWrapR()
Dqueryutils.cpp276 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapR()); in QueryTexParameterBase()
506 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapR()); in QuerySamplerParameterBase()
/external/swiftshader/src/OpenGL/libGLESv2/
DSampler.h62 GLenum getWrapR() const { return mWrapModeR; } in getWrapR() function
DTexture.h129 GLenum getWrapR() const { return mWrapR; } in getWrapR() function
DContext.cpp1819 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()
DlibGLESv2.cpp3314 *params = (GLfloat)texture->getWrapR(); in GetTexParameterfv()
3394 *params = texture->getWrapR(); in GetTexParameteriv()
/external/angle/src/libANGLE/renderer/gl/
DSamplerGL.cpp97 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_R, &gl::SamplerState::getWrapR, &gl::SamplerStat… in syncState()
DTextureGL.cpp1477 mAppliedSampler.setWrapR(mState.getSamplerState().getWrapR()); in syncState()
1480 GL_TEXTURE_WRAP_R, mAppliedSampler.getWrapR())); in syncState()
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DRenderStateCache.cpp285 samplerDesc.AddressW = gl_d3d11::ConvertTextureWrap(samplerState.getWrapR()); in getSamplerState()
DStateManager11.cpp424 GLenum wrapR = samplerState.getWrapR(); in updateSamplerMetadata()
/external/angle/src/libANGLE/capture/
DFrameCapture.cpp2464 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()
Dframe_capture_utils.cpp843 json->addScalar("WrapR", samplerState.getWrapR()); in SerializeSamplerState()
/external/angle/src/libANGLE/renderer/metal/
Dmtl_state_cache.mm455 rAddressMode = GetSamplerAddressMode(glState.getWrapR());
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3195 SetBitField(mAddressModeW, gl_vk::GetSamplerAddressMode(samplerState.getWrapR())); in update()