Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/
DSampler.cpp121 GLfloat Sampler::getMinLod() const in getMinLod() function in gl::Sampler
123 return mState.getMinLod(); in getMinLod()
DSampler.h57 GLfloat getMinLod() const;
DTexture.h302 GLfloat getMinLod() const;
Dangletypes.h354 GLfloat getMinLod() const { return mMinLod; } in getMinLod() function
DTexture.cpp934 GLfloat Texture::getMinLod() const in getMinLod() function in gl::Texture
936 return mState.mSamplerState.getMinLod(); in getMinLod()
Dqueryutils.cpp310 *params = CastFromSpecialValue<isGLfixed, ParamType>(pname, texture->getMinLod()); in QueryTexParameterBase()
518 *params = CastFromStateValue<ParamType>(pname, sampler->getMinLod()); in QuerySamplerParameterBase()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DSampler.h63 GLfloat getMinLod() const { return mMinLod; } in getMinLod() function
DContext.cpp1820 case GL_TEXTURE_MIN_LOD: return static_cast<GLint>(roundf(samplerObject->getMinLod())); in getSamplerParameteri()
1843 case GL_TEXTURE_MIN_LOD: return samplerObject->getMinLod(); in getSamplerParameterf()
3174 minLOD = samplerObject->getMinLod(); in applyTextures()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DSamplerGL.cpp99 …D, mState, mAppliedSamplerState, GL_TEXTURE_MIN_LOD, &gl::SamplerState::getMinLod, &gl::SamplerSta… in syncState()
DTextureGL.cpp1494 mAppliedSampler.setMinLod(mState.getSamplerState().getMinLod()); in syncState()
1497 GL_TEXTURE_MIN_LOD, mAppliedSampler.getMinLod())); in syncState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DRenderStateCache.cpp299 samplerDesc.MinLOD = samplerState.getMinLod(); in getSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
DFrameCapture.cpp2754 if (textureSamplerState.getMinLod() != defaultSamplerState.getMinLod()) in CaptureShareGroupMidExecutionSetup()
2756 capTexParamf(GL_TEXTURE_MIN_LOD, textureSamplerState.getMinLod()); in CaptureShareGroupMidExecutionSetup()
3112 if (sampler->getMinLod() != defaultSamplerState.getMinLod()) in CaptureShareGroupMidExecutionSetup()
3115 sampler->getMinLod())); in CaptureShareGroupMidExecutionSetup()
Dframe_capture_utils.cpp740 json->addScalar("MinLod", samplerState.getMinLod()); in SerializeSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DTextureMtl.mm1528 minLodClamp = mState.getSamplerState().getMinLod();
1535 minLodClamp = sampler->getSamplerState().getMinLod();
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3278 mMinLod = samplerState.getMinLod(); in update()