Home
last modified time | relevance | path

Searched refs:minify (Results 1 – 25 of 38) sorted by relevance

12

/third_party/mesa3d/src/mesa/drivers/dri/i915/
Dintel_tex_layout.c145 mip1_width = ALIGN(minify(mt->physical_width0, 1), mt->align_w) + in i945_miptree_layout_2d()
146 ALIGN(minify(mt->physical_width0, 2), mt->align_w); in i945_miptree_layout_2d()
148 mip1_width = ALIGN(minify(mt->physical_width0, 1), mt->align_w) + in i945_miptree_layout_2d()
149 minify(mt->physical_width0, 2); in i945_miptree_layout_2d()
183 width = minify(width, 1); in i945_miptree_layout_2d()
184 height = minify(height, 1); in i945_miptree_layout_2d()
Di915_tex_layout.c175 width = minify(width, 1); in i915_miptree_layout_3d()
176 height = minify(height, 1); in i915_miptree_layout_3d()
177 depth = minify(depth, 1); in i915_miptree_layout_3d()
189 depth = minify(depth, 1); in i915_miptree_layout_3d()
222 width = minify(width, 1); in i915_miptree_layout_2d()
223 height = minify(height, 1); in i915_miptree_layout_2d()
450 width = minify(width, 1); in i945_miptree_layout_3d()
451 height = minify(height, 1); in i945_miptree_layout_3d()
452 depth = minify(depth, 1); in i945_miptree_layout_3d()
/third_party/vk-gl-cts/modules/gles3/performance/
Des3pTextureFilteringTests.cpp65 bool minify; in init() member
91 bool minify = cases[caseNdx].minify; in init() local
92 …string name = string(cases[caseNdx].name) + (minify ? "_minify_" : "_magnify_") + texFormats[for… in init()
94 …m_context, name.c_str(), "", format, wrapS, wrapT, minFilter, magFilter, minify ? minTransform : m… in init()
/third_party/vk-gl-cts/modules/gles2/performance/
Des2pTextureFilteringTests.cpp64 bool minify; in init() member
91 bool minify = cases[caseNdx].minify; in init() local
92 …string name = string(cases[caseNdx].name) + (minify ? "_minify_" : "_magnify_") + texFormats[for… in init()
94 … name.c_str(), "", format, dataType, wrapS, wrapT, minFilter, magFilter, minify ? minTransform : m… in init()
/third_party/mesa3d/src/freedreno/decode/scripts/
Dtex3d-layout.lua19 function minify(val, lvls) function
114 if blit.width ~= minify(w, 1) or blit.height ~= minify(h, 1) then
115 … printf("I am confused! %ux%u vs %ux%u\n", blit.width, blit.height, minify(w, 1), minify(h, 1))
Dtexturator-to-unit-test-5xx.lua35 function minify(val, lvls) function
167 local w = minify(width0, level)
168 local h = minify(height0, level)
183 local w = minify(width0, level)
184 local h = minify(height0, level)
Dtexturator-to-unit-test.lua35 function minify(val, lvls) function
166 local w = minify(width0, level)
167 local h = minify(height0, level)
182 local w = minify(width0, level)
183 local h = minify(height0, level)
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_generate_mipmap.c135 minify(base_size->width, src_level), in brw_generate_mipmap()
136 minify(base_size->height, src_level), in brw_generate_mipmap()
138 minify(base_size->width, dst_level), in brw_generate_mipmap()
139 minify(base_size->height, dst_level), in brw_generate_mipmap()
Dbrw_mipmap_tree.c128 target == GL_TEXTURE_3D ? minify(depth0, level) : depth0; in create_mapping_table()
236 return minify(mt->surf.logical_level0_px.depth, level); in brw_get_num_logical_layers()
251 return minify(surf->phys_level0_sa.array_len, level); in get_num_phys_layers()
253 return minify(surf->phys_level0_sa.depth, level); in get_num_phys_layers()
1115 minify(mt->surf.logical_level0_px.depth, level) : in brw_miptree_match_image()
1118 return width == minify(mt->surf.logical_level0_px.width, level) && in brw_miptree_match_image()
1119 height == minify(mt->surf.logical_level0_px.height, level) && in brw_miptree_match_image()
1290 unsigned width = minify(src_mt->surf.phys_level0_sa.width, in brw_miptree_copy_slice()
1292 unsigned height = minify(src_mt->surf.phys_level0_sa.height, in brw_miptree_copy_slice()
1495 uint32_t width = minify(mt->surf.phys_level0_sa.width, level); in brw_miptree_level_enable_hiz()
[all …]
Dbrw_blit.c518 src_y = minify(h0, src_level - src_mt->first_level) - src_y - height; in brw_miptree_blit()
523 dst_y = minify(h0, dst_level - dst_mt->first_level) - dst_y - height; in brw_miptree_blit()
593 minify(src_mt->surf.logical_level0_px.width, src_level)); in brw_miptree_copy()
596 minify(src_mt->surf.logical_level0_px.height, src_level)); in brw_miptree_copy()
Dbrw_clear.c155 (minify(mt->surf.phys_level0_sa.width, in brw_fast_clear_depth()
Dbrw_wm_surface_state.c116 surf->logical_level0_px.width = minify(surf->logical_level0_px.width, l); in get_isl_surf()
118 minify(surf->logical_level0_px.height, l); in get_isl_surf()
120 minify(surf->logical_level0_px.depth, l); in get_isl_surf()
1561 num_layers = minify(mt->surf.logical_level0_px.depth, u->Level); in update_image_surface()
/third_party/cJSON/fuzzing/
Dcjson_read_fuzzer.c19 int minify, require_termination, formatted, buffered; in LLVMFuzzerTestOneInput() local
29 minify = data[0] == '1' ? 1 : 0; in LLVMFuzzerTestOneInput()
57 if(minify) in LLVMFuzzerTestOneInput()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageTexture.cpp104 static inline deUint32 minify (deUint32 value, deUint32 mipmapLevel) in minify() function
121 size.z() = minify(size.z(), mipmapLevel); in layerSize()
127 size.y() = minify(size.y(), mipmapLevel); in layerSize()
131 size.x() = minify(size.x(), mipmapLevel); in layerSize()
/third_party/mesa3d/src/intel/blorp/
Dblorp.c464 params.x1 = minify(params.depth.surf.logical_level0_px.width, in blorp_hiz_op()
466 params.y1 = minify(params.depth.surf.logical_level0_px.height, in blorp_hiz_op()
506 assert(minify(params.depth.surf.logical_level0_px.width, in blorp_hiz_op()
508 assert(minify(params.depth.surf.logical_level0_px.height, in blorp_hiz_op()
Dblorp_clear.c961 x1 == minify(surf->logical_level0_px.width, level) && in blorp_can_hiz_clear_depth()
962 y1 == minify(surf->logical_level0_px.height, level); in blorp_can_hiz_clear_depth()
991 width = minify(stencil->surf->logical_level0_px.width, level); in blorp_can_clear_full_surface()
992 height = minify(stencil->surf->logical_level0_px.height, level); in blorp_can_clear_full_surface()
996 width = minify(depth->surf->logical_level0_px.width, level); in blorp_can_clear_full_surface()
997 height = minify(depth->surf->logical_level0_px.height, level); in blorp_can_clear_full_surface()
1228 params.x1 = minify(params.dst.surf.logical_level0_px.width, level); in blorp_ccs_resolve()
1229 params.y1 = minify(params.dst.surf.logical_level0_px.height, level); in blorp_ccs_resolve()
1442 minify(surf->aux_surf->logical_level0_px.width, level); in blorp_ccs_ambiguate()
1444 minify(surf->aux_surf->logical_level0_px.height, level); in blorp_ccs_ambiguate()
/third_party/mesa3d/src/mesa/drivers/common/
Dmeta_generate_mipmap.c292 dstWidth = minify(srcWidth, 1); in _mesa_meta_GenerateMipmap()
293 dstHeight = minify(srcHeight, 1); in _mesa_meta_GenerateMipmap()
294 dstDepth = target == GL_TEXTURE_3D ? minify(srcDepth, 1) : srcDepth; in _mesa_meta_GenerateMipmap()
/third_party/e2fsprogs/tests/m_minrootdir/
Dscript52 echo "minify fs" >> $OUT
58 echo "minify fs (2)" >> $OUT
Dexpect110 minify fs
164 minify fs (2)
/third_party/json/doc/mkdocs/
Drequirements.txt17 mkdocs-minify-plugin>=0.3.0
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/scripts/
Dbundle.js53 var result = uglify.minify(buf.toString(), uglifyOpts);
/third_party/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_mipmap_tree.c161 mt->levels[level].width = minify(mt->width0, i); in calculate_miptree_layout()
162 mt->levels[level].height = minify(mt->height0, i); in calculate_miptree_layout()
163 mt->levels[level].depth = minify(mt->depth0, i); in calculate_miptree_layout()
/third_party/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_mipmap_tree.c161 mt->levels[level].width = minify(mt->width0, i); in calculate_miptree_layout()
162 mt->levels[level].height = minify(mt->height0, i); in calculate_miptree_layout()
163 mt->levels[level].depth = minify(mt->depth0, i); in calculate_miptree_layout()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_linear_sampler.c678 boolean minify) in sampler_is_nearest() argument
682 if (minify) in sampler_is_nearest()
770 boolean minify; in lp_linear_init_sampler() local
801 minify = (rho > FIXED16_ONE); in lp_linear_init_sampler()
804 is_nearest = sampler_is_nearest(samp, sampler_state, minify); in lp_linear_init_sampler()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_clear.c84 box->width < minify(p_res->width0, level) || in can_fast_clear_color()
85 box->height < minify(p_res->height0, level)) { in can_fast_clear_color()
443 (minify(res->surf.phys_level0_sa.width, in can_fast_clear_depth()

12