Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/
DSampler.cpp132 GLfloat Sampler::getMaxLod() const in getMaxLod() function in gl::Sampler
134 return mState.getMaxLod(); in getMaxLod()
DSampler.h60 GLfloat getMaxLod() const;
DTexture.h305 GLfloat getMaxLod() const;
Dangletypes.h358 GLfloat getMaxLod() const { return mMaxLod; } in getMaxLod() function
DTexture.cpp947 GLfloat Texture::getMaxLod() const in getMaxLod() function in gl::Texture
949 return mState.mSamplerState.getMaxLod(); in getMaxLod()
Dqueryutils.cpp313 *params = CastFromSpecialValue<isGLfixed, ParamType>(pname, texture->getMaxLod()); in QueryTexParameterBase()
521 *params = CastFromStateValue<ParamType>(pname, sampler->getMaxLod()); in QuerySamplerParameterBase()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DSampler.h64 GLfloat getMaxLod() const { return mMaxLod; } in getMaxLod() function
DContext.cpp1821 case GL_TEXTURE_MAX_LOD: return static_cast<GLint>(roundf(samplerObject->getMaxLod())); in getSamplerParameteri()
1844 case GL_TEXTURE_MAX_LOD: return samplerObject->getMaxLod(); in getSamplerParameterf()
3175 maxLOD = samplerObject->getMaxLod(); in applyTextures()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DRenderStateCache.cpp300 samplerDesc.MaxLOD = samplerState.getMaxLod(); in getSamplerState()
307 ASSERT(samplerState.getMaxLod() >= 999.9f); in getSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DSamplerGL.cpp100 …D, mState, mAppliedSamplerState, GL_TEXTURE_MAX_LOD, &gl::SamplerState::getMaxLod, &gl::SamplerSta… in syncState()
DTextureGL.cpp1500 mAppliedSampler.setMaxLod(mState.getSamplerState().getMaxLod()); in syncState()
1503 GL_TEXTURE_MAX_LOD, mAppliedSampler.getMaxLod())); in syncState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
DFrameCapture.cpp2759 if (textureSamplerState.getMaxLod() != defaultSamplerState.getMaxLod()) in CaptureShareGroupMidExecutionSetup()
2761 capTexParamf(GL_TEXTURE_MAX_LOD, textureSamplerState.getMaxLod()); in CaptureShareGroupMidExecutionSetup()
3117 if (sampler->getMaxLod() != defaultSamplerState.getMaxLod()) in CaptureShareGroupMidExecutionSetup()
3120 sampler->getMaxLod())); in CaptureShareGroupMidExecutionSetup()
Dframe_capture_utils.cpp741 json->addScalar("MaxLod", samplerState.getMaxLod()); in SerializeSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DTextureMtl.mm1529 maxLodClamp = mState.getSamplerState().getMaxLod();
1536 maxLodClamp = sampler->getSamplerState().getMaxLod();
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3279 mMaxLod = samplerState.getMaxLod(); in update()