Searched refs:hw_max_lod (Results 1 - 5 of 5) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/ |
| H A D | genX_state_upload.c | 5387 const float hw_max_lod = GEN_GEN >= 7 ? 14 : 13; local in function:genX 5388 samp_st.MinLOD = CLAMP(sampler->MinLod, 0, hw_max_lod); 5389 samp_st.MaxLOD = CLAMP(sampler->MaxLod, 0, hw_max_lod); 5395 CLAMP(texObj->MinLevel + texObj->BaseLevel, 0, hw_max_lod);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | genX_state_upload.c | 5310 const float hw_max_lod = GFX_VER >= 7 ? 14 : 13; local in function:genX 5311 samp_st.MinLOD = CLAMP(sampler->Attrib.MinLod, 0, hw_max_lod); 5312 samp_st.MaxLOD = CLAMP(sampler->Attrib.MaxLod, 0, hw_max_lod); 5318 CLAMP(texObj->Attrib.MinLevel + texObj->Attrib.BaseLevel, 0, hw_max_lod);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/ |
| H A D | iris_state.c | 1498 const float hw_max_lod = GEN_GEN >= 7 ? 14 : 13; local in function:iris_create_sampler_state 1501 samp.MinLOD = CLAMP(min_lod, 0, hw_max_lod); 1502 samp.MaxLOD = CLAMP(state->max_lod, 0, hw_max_lod);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/ |
| H A D | iris_state.c | 2053 const float hw_max_lod = GFX_VER >= 7 ? 14 : 13; local in function:iris_create_sampler_state 2056 samp.MinLOD = CLAMP(min_lod, 0, hw_max_lod); 2057 samp.MaxLOD = CLAMP(state->max_lod, 0, hw_max_lod);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/ |
| H A D | crocus_state.c | 2415 const float hw_max_lod = GFX_VER >= 7 ? 14 : 13; local in function:crocus_upload_sampler_state 2422 samp.MinLOD = CLAMP(cso->min_lod, 0, hw_max_lod); 2423 samp.MaxLOD = CLAMP(state->max_lod, 0, hw_max_lod); 2427 samp.BaseMipLevel = CLAMP(first_level, 0, hw_max_lod);
|
Completed in 43 milliseconds