Home
last modified time | relevance | path

Searched refs:ms_x (Results 1 – 11 of 11) sorted by relevance

/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_miptree.c40 const unsigned ms = mt->ms_x + mt->ms_y; in nv50_mt_choose_storage_type()
162 mt->ms_x = 2; in nv50_miptree_init_ms_mode()
167 mt->ms_x = 1; in nv50_miptree_init_ms_mode()
172 mt->ms_x = 1; in nv50_miptree_init_ms_mode()
196 if (mt->ms_x | mt->ms_y) in nv50_miptree_init_layout_linear()
215 w = pt->width0 << mt->ms_x; in nv50_miptree_init_layout_tiled()
397 ns->width <<= mt->ms_x; in nv50_surface_from_miptree()
Dnv50_surface.c90 width = u_minify(mt->base.base.width0, level) << mt->ms_x; in nv50_2d_texture_set()
167 if (src->ms_x) in nv50_2d_texture_do_copy()
174 PUSH_DATA (push, dx << dst->ms_x); in nv50_2d_texture_do_copy()
176 PUSH_DATA (push, w << dst->ms_x); in nv50_2d_texture_do_copy()
179 PUSH_DATA (push, duvdxy[2 + ((int)src->ms_x - (int)dst->ms_x)] & 0xf0000000); in nv50_2d_texture_do_copy()
180 PUSH_DATA (push, duvdxy[2 + ((int)src->ms_x - (int)dst->ms_x)] & 0x0000000f); in nv50_2d_texture_do_copy()
185 PUSH_DATA (push, sx << src->ms_x); in nv50_2d_texture_do_copy()
901 x0 *= (float)(1 << nv50_miptree(src)->ms_x); in nv50_resource_resolve()
902 x1 *= (float)(1 << nv50_miptree(src)->ms_x); in nv50_resource_resolve()
939 PUSH_DATAf(push, 16384 << nv50_miptree(dst)->ms_x); in nv50_resource_resolve()
Dnv50_transfer.c29 rect->width = w << mt->ms_x; in nv50_m2mf_rect_setup()
31 rect->x = x << mt->ms_x; in nv50_m2mf_rect_setup()
277 tx->nblocksx = box->width << mt->ms_x; in nv50_miptree_transfer_new()
278 tx->nblocksy = box->height << mt->ms_x; in nv50_miptree_transfer_new()
Dnv50_resource.h52 uint8_t ms_x; /* log2 of number of samples in x/y dimension */ member
Dnv50_tex.c186 tic[4] = (1 << 31) | (mt->base.base.width0 << mt->ms_x); in nv50_create_sampler_view()
192 tic[6] = (mt->ms_x > 1) ? 0x88000000 : 0x03000000; /* sampling points */ in nv50_create_sampler_view()
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_miptree.c160 mt->ms_x = 2; in nvc0_miptree_init_ms_mode()
165 mt->ms_x = 1; in nvc0_miptree_init_ms_mode()
170 mt->ms_x = 1; in nvc0_miptree_init_ms_mode()
196 assert(mt->ms_x == 0 && in nvc0_miptree_init_layout_video()
220 w = pt->width0 << mt->ms_x; in nvc0_miptree_init_layout_tiled()
Dnvc0_surface.c93 width = u_minify(mt->base.base.width0, level) << mt->ms_x; in nvc0_2d_texture_set()
174 if (src->ms_x) in nvc0_2d_texture_do_copy()
181 PUSH_DATA (push, dx << dst->ms_x); in nvc0_2d_texture_do_copy()
183 PUSH_DATA (push, w << dst->ms_x); in nvc0_2d_texture_do_copy()
186 PUSH_DATA (push, duvdxy[2 + ((int)src->ms_x - (int)dst->ms_x)] & 0xf0000000); in nvc0_2d_texture_do_copy()
187 PUSH_DATA (push, duvdxy[2 + ((int)src->ms_x - (int)dst->ms_x)] & 0x0000000f); in nvc0_2d_texture_do_copy()
192 PUSH_DATA (push, sx << src->ms_x); in nvc0_2d_texture_do_copy()
194 PUSH_DATA (push, sy << src->ms_x); in nvc0_2d_texture_do_copy()
993 x0 *= (float)(1 << nv50_miptree(src)->ms_x); in nvc0_resource_resolve()
994 x1 *= (float)(1 << nv50_miptree(src)->ms_x); in nvc0_resource_resolve()
[all …]
Dnvc0_tex.c190 tic[4] = (1 << 31) | (mt->base.base.width0 << mt->ms_x); in nvc0_create_sampler_view()
196 tic[6] = (mt->ms_x > 1) ? 0x88000000 : 0x03000000; /* sampling points */ in nvc0_create_sampler_view()
Dnvc0_transfer.c357 tx->nblocksx = box->width << mt->ms_x; in nvc0_miptree_transfer_new()
/external/mesa3d/src/gallium/drivers/nv30/
Dnv30_miptree.c95 rect->w = u_minify(pt->width0, level) << mt->ms_x; in define_rect()
116 rect->x0 = util_format_get_nblocksx(pt->format, x) << mt->ms_x; in define_rect()
118 rect->x1 = rect->x0 + (w << mt->ms_x); in define_rect()
283 mt->ms_x = 1; in nv30_miptree_create()
288 mt->ms_x = 1; in nv30_miptree_create()
293 mt->ms_x = 0; in nv30_miptree_create()
303 w = pt->width0 << mt->ms_x; in nv30_miptree_create()
Dnv30_resource.h37 unsigned ms_x:1; member