Home
last modified time | relevance | path

Searched refs:getWrapT (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/
DSampler.cpp88 GLenum Sampler::getWrapT() const in getWrapT() function in gl::Sampler
90 return mState.getWrapT(); in getWrapT()
DSampler.h48 GLenum getWrapT() const;
DTexture.cpp366 (samplerState.getWrapT() != GL_CLAMP_TO_EDGE && in computeSamplerCompleteness()
367 samplerState.getWrapT() != GL_CLAMP_TO_BORDER && !isPow2(baseImageDesc.size.height))) in computeSamplerCompleteness()
411 samplerState.getWrapT() != GL_CLAMP_TO_EDGE) in computeSamplerCompleteness()
887 if (mState.mSamplerState.getWrapT() == wrapT) in setWrapT()
895 GLenum Texture::getWrapT() const in getWrapT() function in gl::Texture
897 return mState.mSamplerState.getWrapT(); in getWrapT()
DTexture.h293 GLenum getWrapT() const;
Dangletypes.h342 GLenum getWrapT() const { return mWrapT; } in getWrapT() function
Dqueryutils.cpp273 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapT()); in QueryTexParameterBase()
509 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapT()); in QuerySamplerParameterBase()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DSampler.h61 GLenum getWrapT() const { return mWrapModeT; } in getWrapT() function
DTexture.h128 GLenum getWrapT() const { return mWrapT; } in getWrapT() function
DContext.cpp1818 case GL_TEXTURE_WRAP_T: return static_cast<GLint>(samplerObject->getWrapT()); in getSamplerParameteri()
1841 case GL_TEXTURE_WRAP_T: return static_cast<GLfloat>(samplerObject->getWrapT()); in getSamplerParameterf()
3170 wrapT = samplerObject->getWrapT(); in applyTextures()
3183 wrapT = texture->getWrapT(); in applyTextures()
DlibGLESv2.cpp3311 *params = (GLfloat)texture->getWrapT(); in GetTexParameterfv()
3391 *params = texture->getWrapT(); in GetTexParameteriv()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DSamplerGL.cpp96 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_T, &gl::SamplerState::getWrapT, &gl::SamplerStat… in syncState()
DTextureGL.cpp1475 mAppliedSampler.setWrapT(mState.getSamplerState().getWrapT()); in syncState()
1478 GL_TEXTURE_WRAP_T, mAppliedSampler.getWrapT())); in syncState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DRenderStateCache.cpp284 samplerDesc.AddressV = gl_d3d11::ConvertTextureWrap(samplerState.getWrapT()); in getSamplerState()
DStateManager11.cpp423 GLenum wrapT = samplerState.getWrapT(); in updateSamplerMetadata()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
DFrameCapture.cpp2749 if (textureSamplerState.getWrapT() != defaultSamplerState.getWrapT()) in CaptureShareGroupMidExecutionSetup()
2751 capTexParam(GL_TEXTURE_WRAP_T, textureSamplerState.getWrapT()); in CaptureShareGroupMidExecutionSetup()
3107 if (sampler->getWrapT() != defaultSamplerState.getWrapT()) in CaptureShareGroupMidExecutionSetup()
3110 sampler->getWrapT())); in CaptureShareGroupMidExecutionSetup()
Dframe_capture_utils.cpp737 json->addScalar("WrapT", samplerState.getWrapT()); in SerializeSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_state_cache.mm457 tAddressMode = GetSamplerAddressMode(glState.getWrapT());
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DRenderer9.cpp1008 gl_d3d9::ConvertTextureWrap(samplerState.getWrapT())); in setSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3313 SetBitField(mAddressModeV, gl_vk::GetSamplerAddressMode(samplerState.getWrapT())); in update()