Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/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.h296 GLenum getWrapR() const;
Dangletypes.h346 GLenum getWrapR() const { return mWrapR; } in getWrapR() function
DTexture.cpp908 GLenum Texture::getWrapR() const in getWrapR() function in gl::Texture
910 return mState.mSamplerState.getWrapR(); in getWrapR()
Dqueryutils.cpp276 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapR()); in QueryTexParameterBase()
512 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapR()); in QuerySamplerParameterBase()
/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DSamplerGL.cpp97 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_R, &gl::SamplerState::getWrapR, &gl::SamplerStat… in syncState()
DTextureGL.cpp1481 mAppliedSampler.setWrapR(mState.getSamplerState().getWrapR()); in syncState()
1484 GL_TEXTURE_WRAP_R, mAppliedSampler.getWrapR())); in syncState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DRenderStateCache.cpp285 samplerDesc.AddressW = gl_d3d11::ConvertTextureWrap(samplerState.getWrapR()); in getSamplerState()
DStateManager11.cpp424 GLenum wrapR = samplerState.getWrapR(); in updateSamplerMetadata()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
DFrameCapture.cpp2739 if (textureSamplerState.getWrapR() != defaultSamplerState.getWrapR()) in CaptureShareGroupMidExecutionSetup()
2741 capTexParam(GL_TEXTURE_WRAP_R, textureSamplerState.getWrapR()); in CaptureShareGroupMidExecutionSetup()
3102 if (sampler->getWrapR() != defaultSamplerState.getWrapR()) in CaptureShareGroupMidExecutionSetup()
3105 sampler->getWrapR())); in CaptureShareGroupMidExecutionSetup()
Dframe_capture_utils.cpp738 json->addScalar("WrapR", samplerState.getWrapR()); in SerializeSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_state_cache.mm455 rAddressMode = GetSamplerAddressMode(glState.getWrapR());
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3314 SetBitField(mAddressModeW, gl_vk::GetSamplerAddressMode(samplerState.getWrapR())); in update()