HomeSort by relevance Sort by last modified time
    Searched refs:u_minify (Results 1 - 25 of 33) sorted by null

1 2

  /external/mesa3d/src/mesa/state_tracker/
st_texture.c 195 if (ptWidth != u_minify(pt->width0, image->Level) ||
196 ptHeight != u_minify(pt->height0, image->Level) ||
197 ptDepth != u_minify(pt->depth0, image->Level) ||
310 layers = u_minify(dst->depth0, level);
317 u_minify(dst->width0, level),
318 u_minify(dst->height0, level));
325 u_minify(dst->width0, level),
326 u_minify(dst->height0, level)); /* width, height */
374 GLuint width = u_minify(dst->width0, dstLevel);
375 GLuint height = u_minify(dst->height0, dstLevel)
    [all...]
st_gen_mipmap.c 225 dstWidth = u_minify(pt->width0, dstLevel);
230 dstHeight = u_minify(pt->height0, dstLevel);
236 dstDepth = u_minify(pt->depth0, dstLevel);
st_atom_framebuffer.c 69 if (u_minify(resource->width0, level) == rtt_width &&
70 u_minify(resource->height0, level) == rtt_height) {
st_cb_texture.c     [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_texture.c 81 width = u_minify(width, 1);
82 height = u_minify(height, 1);
83 depth = u_minify(depth, 1);
233 const unsigned hgt = u_minify(spr->base.height0, level);
273 ps->width = u_minify(pt->width0, level);
274 ps->height = u_minify(pt->height0, level);
325 assert(box->x + box->width <= u_minify(resource->width0, level));
330 assert(box->y + box->height <= u_minify(resource->height0, level));
338 assert(box->z + box->depth <= (u_minify(resource->depth0, level)));
367 const unsigned hgt = u_minify(spr->base.height0, level)
    [all...]
sp_tex_sample.c 496 float rho = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level);
513 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level);
514 float maxy = MAX2(dtdx, dtdy) * u_minify(texture->height0, samp->view->u.tex.first_level);
534 float maxx = MAX2(dsdx, dsdy) * u_minify(texture->width0, samp->view->u.tex.first_level);
535 float maxy = MAX2(dtdx, dtdy) * u_minify(texture->height0, samp->view->u.tex.first_level);
536 float maxz = MAX2(dpdx, dpdy) * u_minify(texture->depth0, samp->view->u.tex.first_level);
600 if (x < 0 || x >= (int) u_minify(texture->width0, level) ||
601 y < 0 || y >= (int) u_minify(texture->height0, level)) {
693 if (x < 0 || x >= (int) u_minify(texture->width0, level) ||
694 y < 0 || y >= (int) u_minify(texture->height0, level) |
    [all...]
sp_tex_tile_cache.c 268 width = u_minify(tc->texture->width0, addr.bits.level);
274 height = u_minify(tc->texture->height0, addr.bits.level);
  /external/mesa3d/src/gallium/drivers/svga/
svga_surface.c 126 key->size.width = u_minify(tex->b.b.width0, start_mip);
127 key->size.height = u_minify(tex->b.b.height0, start_mip);
128 key->size.depth = zslice_pick < 0 ? u_minify(tex->b.b.depth0, start_mip) : 1;
163 u_minify(tex->b.b.depth0, i + start_mip) :
172 u_minify(tex->b.b.width0, i + start_mip),
173 u_minify(tex->b.b.height0, i + start_mip),
220 s->base.width = u_minify(pt->width0, surf_tmpl->u.tex.level);
221 s->base.height = u_minify(pt->height0, surf_tmpl->u.tex.level);
381 u_minify(tex->b.b.width0, surf->u.tex.level),
382 u_minify(tex->b.b.height0, surf->u.tex.level), 1)
    [all...]
svga_sampler_view.c 195 u_minify(tex->b.b.width0, i),
196 u_minify(tex->b.b.height0, i),
197 u_minify(tex->b.b.depth0, i));
svga_screen_cache.c 63 unsigned w = u_minify(key->size.width, i);
64 unsigned h = u_minify(key->size.height, i);
65 unsigned d = u_minify(key->size.depth, i);
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture_desc.c 101 texdim = u_minify(tex->tex.width0, level);
103 texdim = u_minify(tex->tex.height0, level);
137 width = u_minify(tex->tex.width0, level);
161 height = u_minify(tex->tex.height0, level);
258 size = layer_size * u_minify(tex->tex.depth0, i);
268 i, u_minify(tex->tex.width0, i), u_minify(tex->tex.height0, i),
269 u_minify(tex->tex.depth0, i), stride, tex->tex.size_in_bytes,
373 height = u_minify(tex->b.b.height0, i);
r300_texture.c 814 width = u_minify(width0_override, level);
815 height = u_minify(height0_override, level);
816 depth = u_minify(desc->depth0, level);
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_miptree.c 241 w = u_minify(w, 1);
242 h = u_minify(h, 1);
243 d = u_minify(d, 1);
355 u_minify(pt->height0, l));
388 ns->width = u_minify(mt->base.base.width0, ps->u.tex.level);
389 ns->height = u_minify(mt->base.base.height0, ps->u.tex.level);
nv50_transfer.c 21 const unsigned w = u_minify(res->width0, l);
22 const unsigned h = u_minify(res->height0, l);
44 rect->depth = u_minify(res->depth0, l);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_miptree.c 95 rect->w = u_minify(pt->width0, level) << mt->ms_x;
97 rect->h = u_minify(pt->height0, level) << mt->ms_y;
103 rect->d = u_minify(pt->depth0, level);
335 w = u_minify(w, 1);
336 h = u_minify(h, 1);
337 d = u_minify(d, 1);
419 ns->width = u_minify(pt->width0, ps->u.tex.level);
420 ns->height = u_minify(pt->height0, ps->u.tex.level);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_miptree.c 246 w = u_minify(w, 1);
247 h = u_minify(h, 1);
248 d = u_minify(d, 1);
336 u_minify(pt->height0, l));
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 353 width = u_minify(width, 1);
354 height = u_minify(height, 1);
382 width = u_minify(width, 1);
383 height = u_minify(height, 1);
394 depth = u_minify(depth, 1);
461 align_nblocksx(pt->format, u_minify(pt->width0, 1), align_x) +
462 util_format_get_nblocksx(pt->format, u_minify(pt->width0, 2));
490 width = u_minify(width, 1);
491 height = u_minify(height, 1);
545 width = u_minify(width, 1)
    [all...]
i915_surface.c 296 ps->width = u_minify(pt->width0, surf_tmpl->u.tex.level);
297 ps->height = u_minify(pt->height0, surf_tmpl->u.tex.level);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11.cpp 113 box.width = u_minify(resource->width0, level);
114 box.height = u_minify(resource->height0, level);
115 box.depth = u_minify(resource->depth0, level);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_texture.c 178 width = u_minify(width, 1);
179 height = u_minify(height, 1);
180 depth = u_minify(depth, 1);
377 assert(layer < (u_minify(resource->depth0, level) + resource->array_size - 1));
570 ps->width = u_minify(pt->width0, surf_tmpl->u.tex.level);
571 ps->height = u_minify(pt->height0, surf_tmpl->u.tex.level);
794 const unsigned width = u_minify(lpr->base.width0, level);
795 const unsigned height = u_minify(lpr->base.height0, level);
1037 const unsigned width = u_minify(lpr->base.width0, level);
1038 const unsigned height = u_minify(lpr->base.height0, level)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_gen_mipmap.c     [all...]
u_blit.c 639 s0 /= (float)(u_minify(sampler_view->texture->width0, src_level));
640 s1 /= (float)(u_minify(sampler_view->texture->width0, src_level));
641 t0 /= (float)(u_minify(sampler_view->texture->height0, src_level));
642 t1 /= (float)(u_minify(sampler_view->texture->height0, src_level));
845 float w = (float) u_minify(tex->width0, level);
846 float h = (float) u_minify(tex->height0, level);
u_inlines.h 196 ps->width = u_minify(pt->width0, level);
197 ps->height = u_minify(pt->height0, level);
u_blitter.c 565 out[0] = x1 / (float)u_minify(src_width0, level);
566 out[1] = y1 / (float)u_minify(src_height0, level);
567 out[2] = x2 / (float)u_minify(src_width0, level);
568 out[3] = y2 / (float)u_minify(src_height0, level);
620 float r = layer / (float)u_minify(src->texture->depth0,
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d_image.c 282 if (layer >= (u_minify(ptex->depth0, level) + ptex->array_size - 1)) {

Completed in 394 milliseconds

1 2