Searched refs:maxLod (Results 1 - 25 of 31) sorted by relevance

12

/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.c255 int minLod, maxLod; local
266 minLod = maxLod = tObj->BaseLevel;
271 maxLod = tObj->BaseLevel + (GLint)(samp->MaxLod + 0.5);
272 maxLod = MIN2(maxLod, tObj->MaxLevel);
273 maxLod = MIN2(maxLod, tObj->Image[0][minLod]->MaxNumLevels - 1 + minLod);
274 maxLod = MAX2(maxLod, minLod); /* need at least one level */
279 minLod = maxLod
[all...]
H A Dradeon_common_context.h198 unsigned maxLod; member in struct:radeon_tex_obj
H A Dr200_texstate.c1425 t->pp_txfilter |= ((t->maxLod) << R200_MAX_MIP_LEVEL_SHIFT)
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.c255 int minLod, maxLod; local
266 minLod = maxLod = tObj->BaseLevel;
271 maxLod = tObj->BaseLevel + (GLint)(samp->MaxLod + 0.5);
272 maxLod = MIN2(maxLod, tObj->MaxLevel);
273 maxLod = MIN2(maxLod, tObj->Image[0][minLod]->MaxNumLevels - 1 + minLod);
274 maxLod = MAX2(maxLod, minLod); /* need at least one level */
279 minLod = maxLod
[all...]
H A Dradeon_common_context.h198 unsigned maxLod; member in struct:radeon_tex_obj
H A Dradeon_texstate.c1009 t->pp_txfilter |= (t->maxLod - t->minLod) << RADEON_MAX_MIP_LEVEL_SHIFT;
/external/deqp/modules/glshared/
H A DglsSamplerObjectTest.hpp51 GLfloat maxLod; member in struct:deqp::gls::TextureSamplerTest::SamplingState
109 GLfloat maxLod; member in struct:deqp::gls::MultiTextureSamplerTest::SamplingState
H A DglsTextureTestUtil.hpp322 , maxLod (1000.0f)
333 , maxLod (1000.0f)
342 float maxLod; member in struct:deqp::gls::TextureTestUtil::ReferenceParams
H A DglsSamplerObjectTest.cpp95 gl.texParameterf(target, GL_TEXTURE_MAX_LOD, state.maxLod);
96 GLU_EXPECT_NO_ERROR(gl.getError(), "glTexParameterf(target, GL_TEXTURE_MAX_LOD, state.maxLod)");
113 gl.samplerParameterf(sampler, GL_TEXTURE_MAX_LOD, state.maxLod);
114 GLU_EXPECT_NO_ERROR(gl.getError(), "glSamplerParameterf(sampler, GL_TEXTURE_MAX_LOD, state.maxLod)");
607 gl.texParameterf(target, GL_TEXTURE_MAX_LOD, state.maxLod);
608 GLU_EXPECT_NO_ERROR(gl.getError(), "glTexParameterf(target, GL_TEXTURE_MAX_LOD, state.maxLod)");
625 gl.samplerParameterf(sampler, GL_TEXTURE_MAX_LOD, state.maxLod);
626 GLU_EXPECT_NO_ERROR(gl.getError(), "glSamplerParameterf(sampler, GL_TEXTURE_MAX_LOD, state.maxLod)");
H A DglsTextureTestUtil.cpp442 float triLod[2] = { de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[0]) + lodBias, params.minLod, params.maxLod),
443 de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[1]) + lodBias, params.minLod, params.maxLod) };
478 float triLod[2] = { de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[0], triT[0]) + lodBias, params.minLod, params.maxLod),
479 de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[1], triT[1]) + lodBias, params.minLod, params.maxLod) };
689 const float lod = de::clamp(computeCubeLodFromDerivates(params.lodMode, coord, coordDx, coordDy, srcSize) + lodBias, params.minLod, params.maxLod);
721 float triLod[2] = { de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[0], triT[0]) + lodBias, params.minLod, params.maxLod),
722 de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[1], triT[1]) + lodBias, params.minLod, params.maxLod) };
816 float triLod[2] = { de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[0], triT[0], triR[0]) + lodBias, params.minLod, params.maxLod),
817 de::clamp(computeNonProjectedTriLod(params.lodMode, dstSize, srcSize, triS[1], triT[1], triR[1]) + lodBias, params.minLod, params.maxLod) };
945 const float lod = de::clamp(computeCubeLodFromDerivates(params.lodMode, coord, coordDx, coordDy, src.getSize()) + lodBias, params.minLod, params.maxLod);
[all...]
/external/skia/src/gpu/vk/
H A DGrVkSampler.cpp58 createInfo.maxLod = 0.0f;
/external/deqp/framework/common/
H A DtcuTexLookupVerifier.cpp1316 const float maxLod = lodBounds.y(); local
1318 const bool canBeMinified = maxLod > sampler.lodThreshold;
1340 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1347 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1358 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1381 const float maxLod = lodBounds.y(); local
1383 const bool canBeMinified = maxLod > sampler.lodThreshold;
1405 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1412 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1423 const int maxLevel = de::clamp((int)deFloatFloor(maxLod
1681 const float maxLod = lodBounds.y(); local
1773 const float maxLod = lodBounds.y(); local
1843 const float maxLod = lodBounds.y(); local
1939 const float maxLod = lodBounds.y(); local
2033 const float maxLod = lodBounds.y(); local
2130 const float maxLod = deFloatLog2(maxDBound+maxDErr); local
[all...]
H A DtcuTexCompareVerifier.cpp814 const float maxLod = lodBounds.y();
816 const bool canBeMinified = maxLod > sampler.lodThreshold;
838 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
845 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
856 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel);
1099 const float maxLod = lodBounds.y();
1101 const bool canBeMinified = maxLod > sampler.lodThreshold;
1121 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1);
1128 const float maxF = de::clamp(maxLod - float(level), 0.0f, 1.0f);
1139 const int maxLevel = de::clamp((int)deFloatFloor(maxLod
[all...]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineSamplerTests.cpp125 float maxLod,
317 0.25f, // float maxLod;
465 float maxLod,
471 , m_maxLod (maxLod)
482 samplerParams.maxLod = m_maxLod;
601 float maxLod; member in struct:vkt::pipeline::__anon3854::TestCaseConfig
608 { "equal_min_3_max_3", "minLod = 3, maxLod = 3, mipLodBias = 0, lod = 0", 3.0f, 3.0f, 0.0f, 0.0f },
609 { "select_min_1", "minLod = 1, maxLod = 5, mipLodBias = 0, lod = 0", 1.0f, 5.0f, 0.0f, 0.0f },
610 { "select_max_4", "minLod = 0, maxLod = 4, mipLodBias = 0, lod = 5", 0.0f, 4.0f, 0.0f, 5.0f },
611 { "select_bias_2_1", "minLod = 0, maxLod
458 SamplerLodTest(tcu::TestContext& testContext, const char* name, const char* description, VkImageViewType imageViewType, VkFormat imageFormat, VkSamplerMipmapMode mipmapMode, float minLod, float maxLod, float mipLodBias, float samplerLod) argument
[all...]
H A DvktPipelineImageSamplingInstance.cpp989 samplerLod = de::max(m_samplerParams.minLod, de::min(m_samplerParams.maxLod, m_samplerParams.mipLodBias + m_samplerLod));
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawCreateInfoUtil.hpp501 float maxLod = 16.0f,
H A DvktDrawCreateInfoUtil.cpp1179 maxLod = _maxLod;
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateCreateInfoUtil.hpp503 float maxLod = 16.0f,
H A DvktDynamicStateCreateInfoUtil.cpp1180 maxLod = _maxLod;
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolCreateInfoUtil.hpp501 float maxLod = 16.0f,
H A DvktQueryPoolCreateInfoUtil.cpp1187 maxLod = _maxLod;
/external/vulkan-validation-layers/tests/
H A Dlayer_validation_tests.cpp3834 sampler_ci.maxLod = 1.0;
3938 sampler_ci.maxLod = 1.0;
4043 sampler_ci.maxLod = 1.0;
4145 sampler_ci.maxLod = 1.0;
4327 sampler_ci.maxLod = 1.0;
4442 sampler_ci.maxLod = 1.0;
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkStructTypes.inl836 float maxLod;
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiObjectManagementTests.cpp1163 float maxLod;
1181 , maxLod (+1000.f)
1219 params.maxLod,
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp1655 params.maxLod = getMaxLodForCell(cellNdx);
1970 params.maxLod = getMaxLodForCell(cellNdx);
2287 params.maxLod = getMaxLodForCell(cellNdx);

Completed in 1291 milliseconds

12