Home
last modified time | relevance | path

Searched refs:maxAnisotropy (Results 1 – 25 of 101) sorted by relevance

12345

/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DSamplerValidationTests.cpp53 kValidAnisoSamplerDesc.maxAnisotropy = 2; in TEST_F()
63 samplerDesc.maxAnisotropy = 0; in TEST_F()
92 kValidAnisoSamplerDesc.maxAnisotropy = 2; in TEST_F()
99 samplerDesc.maxAnisotropy = 16; in TEST_F()
104 samplerDesc.maxAnisotropy = 32; in TEST_F()
109 samplerDesc.maxAnisotropy = 0x7FFF; in TEST_F()
114 samplerDesc.maxAnisotropy = 0x8000; in TEST_F()
119 samplerDesc.maxAnisotropy = 0xFFFF; in TEST_F()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
DvktTextureFilteringAnisotropyTests.cpp64 , maxAnisotropy (maxAnisotropy_) in AnisotropyParams()
72 float maxAnisotropy; member
91maxAnisotropy = min(getPhysicalDeviceProperties(m_context.getInstanceInterface(), m_context.getPhy… in FilteringAnisotropyInstance()
143 …erQuad(renderedAnisotropyFrame, position, 0, &texCoord[0], m_refParams, m_refParams.maxAnisotropy); in iterate()
216 const float maxAnisotropy[] = in createFilteringAnisotropyTests() local
239 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests()
246 …AnisotropyParams refParams (TEXTURETYPE_2D, maxAnisotropy[anisotropyNdx] ,minFilters[minFilterNdx]… in createFilteringAnisotropyTests()
262 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests()
269 …AnisotropyParams refParams (TEXTURETYPE_2D, maxAnisotropy[anisotropyNdx] ,minFilters[minFilterNdx]… in createFilteringAnisotropyTests()
295 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests()
[all …]
DvktTextureTestUtil.cpp1196 const float maxAnisotropy = 1.0f; in renderQuad() local
1204 renderQuad(result, positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad()
1212 const float maxAnisotropy) in renderQuad() argument
1214 renderQuad(result.getAccess(), positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad()
1222 const float maxAnisotropy) in renderQuad() argument
1465 if (maxAnisotropy > 1.0f) in renderQuad()
1468 samplerCreateInfo.maxAnisotropy = maxAnisotropy; in renderQuad()
DvktTextureTestUtil.hpp222 const float maxAnisotropy);
230 const float maxAnisotropy);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
DvktTextureFilteringAnisotropyTests.cpp64 , maxAnisotropy (maxAnisotropy_) in AnisotropyParams()
72 float maxAnisotropy; member
91maxAnisotropy = min(getPhysicalDeviceProperties(m_context.getInstanceInterface(), m_context.getPhy… in FilteringAnisotropyInstance()
143 …erQuad(renderedAnisotropyFrame, position, 0, &texCoord[0], m_refParams, m_refParams.maxAnisotropy); in iterate()
216 const float maxAnisotropy[] = in createFilteringAnisotropyTests() local
239 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests()
246 …AnisotropyParams refParams (TEXTURETYPE_2D, maxAnisotropy[anisotropyNdx] ,minFilters[minFilterNdx]… in createFilteringAnisotropyTests()
262 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests()
269 …AnisotropyParams refParams (TEXTURETYPE_2D, maxAnisotropy[anisotropyNdx] ,minFilters[minFilterNdx]… in createFilteringAnisotropyTests()
295 for (int anisotropyNdx = 0; anisotropyNdx < DE_LENGTH_OF_ARRAY(maxAnisotropy); anisotropyNdx++) in createFilteringAnisotropyTests()
[all …]
DvktTextureTestUtil.cpp1196 const float maxAnisotropy = 1.0f; in renderQuad() local
1204 renderQuad(result, positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad()
1212 const float maxAnisotropy) in renderQuad() argument
1214 renderQuad(result.getAccess(), positions, texUnit, texCoord, params, maxAnisotropy); in renderQuad()
1222 const float maxAnisotropy) in renderQuad() argument
1465 if (maxAnisotropy > 1.0f) in renderQuad()
1468 samplerCreateInfo.maxAnisotropy = maxAnisotropy; in renderQuad()
DvktTextureTestUtil.hpp222 const float maxAnisotropy);
230 const float maxAnisotropy);
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DSamplerVk.cpp91 uint16_t maxAnisotropy = GetMaxAnisotropy(); in Initialize() local
92 if (device->GetDeviceInfo().features.samplerAnisotropy == VK_TRUE && maxAnisotropy > 1) { in Initialize()
95 createInfo.maxAnisotropy = in Initialize()
96 std::min(static_cast<float>(maxAnisotropy), in Initialize()
100 createInfo.maxAnisotropy = 1; in Initialize()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DSamplerFilterAnisotropicTests.cpp142 void TestFilterAnisotropic(const uint16_t maxAnisotropy) { in TestFilterAnisotropic() argument
149 descriptor.maxAnisotropy = maxAnisotropy; in TestFilterAnisotropic()
259 if (maxAnisotropy >= 16) { in TestFilterAnisotropic()
262 } else if (maxAnisotropy == 2) { in TestFilterAnisotropic()
265 } else if (maxAnisotropy <= 1) { in TestFilterAnisotropic()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DSampler.cpp40 if (descriptor->maxAnisotropy > 1) { in ValidateSamplerDescriptor()
47 wgpu::FilterMode::Linear, descriptor->maxAnisotropy); in ValidateSamplerDescriptor()
48 } else if (descriptor->maxAnisotropy == 0u) { in ValidateSamplerDescriptor()
50 descriptor->maxAnisotropy); in ValidateSamplerDescriptor()
85 mMaxAnisotropy(descriptor->maxAnisotropy) { in SamplerBase()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkSampler.cpp30 , maxAnisotropy(pCreateInfo->maxAnisotropy) in SamplerState()
DVkSampler.hpp46 const float maxAnisotropy = 0.0f; member
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DSampler.h56 void setMaxAnisotropy(GLfloat maxAnisotropy) { mMaxAnisotropy = maxAnisotropy; } in setMaxAnisotropy() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
Drenderer9_utils.h39 D3DTEXTUREFILTERTYPE ConvertMagFilter(GLenum magFilter, float maxAnisotropy);
44 float maxAnisotropy,
Drenderer9_utils.cpp278 D3DTEXTUREFILTERTYPE ConvertMagFilter(GLenum magFilter, float maxAnisotropy) in ConvertMagFilter() argument
280 if (maxAnisotropy > 1.0f) in ConvertMagFilter()
305 float maxAnisotropy, in ConvertMinFilter() argument
354 if (maxAnisotropy > 1.0f) in ConvertMinFilter()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DSampler.cpp310 void Sampler::setMaxAnisotropy(float maxAnisotropy) in setMaxAnisotropy() argument
312 texture.maxAnisotropy = maxAnisotropy; in setMaxAnisotropy()
459 if(textureType != TEXTURE_2D || texture.maxAnisotropy == 1.0f) in getTextureFilter()
DSampler.hpp55 float maxAnisotropy; member
185 void setMaxAnisotropy(float maxAnisotropy);
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DSampler.cpp104 void Sampler::setMaxAnisotropy(const Context *context, float maxAnisotropy) in setMaxAnisotropy() argument
106 mState.setMaxAnisotropy(maxAnisotropy); in setMaxAnisotropy()
DSampler.h53 void setMaxAnisotropy(const Context *context, float maxAnisotropy);
/third_party/mesa3d/src/broadcom/vulkan/
Dv3dvx_device.c215 if (pCreateInfo->maxAnisotropy > 8) in v3dX()
217 else if (pCreateInfo->maxAnisotropy > 4) in v3dX()
219 else if (pCreateInfo->maxAnisotropy > 2) in v3dX()
/third_party/skia/third_party/externals/swiftshader/src/Device/
DSampler.hpp114 float maxAnisotropy = 0.0f; member
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSpirvShaderSampling.cpp80 samplerState.maxAnisotropy = vkSamplerState->maxAnisotropy; in getImageSampler()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.h55 float maxAnisotropy,
58 UINT ConvertMaxAnisotropy(float maxAnisotropy, D3D_FEATURE_LEVEL featureLevel);
/third_party/skia/src/gpu/vk/
DGrVkSampler.cpp65 createInfo.maxAnisotropy = 1.0f; in Create()
/third_party/skia/src/gpu/mtl/
DGrMtlSampler.mm74 samplerDesc.maxAnisotropy = 1.0f;

12345