Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_miptree.c141 mt->ms_mode = NVC0_3D_MULTISAMPLE_MODE_MS8; in nvc0_miptree_init_ms_mode()
146 mt->ms_mode = NVC0_3D_MULTISAMPLE_MODE_MS4; in nvc0_miptree_init_ms_mode()
151 mt->ms_mode = NVC0_3D_MULTISAMPLE_MODE_MS2; in nvc0_miptree_init_ms_mode()
156 mt->ms_mode = NVC0_3D_MULTISAMPLE_MODE_MS1; in nvc0_miptree_init_ms_mode()
204 assert(!mt->ms_mode || !pt->last_level); in nvc0_miptree_init_layout_tiled()
Dnvc0_state_validate.c81 unsigned ms_mode = NVC0_3D_MULTISAMPLE_MODE_MS1; in nvc0_validate_fb() local
122 ms_mode = mt->ms_mode; in nvc0_validate_fb()
172 ms_mode = mt->ms_mode; in nvc0_validate_fb()
192 ms_mode = ffs(fb->samples) - 1; in nvc0_validate_fb()
198 IMMED_NVC0(push, NVC0_3D(MULTISAMPLE_MODE), ms_mode); in nvc0_validate_fb()
200 ms = 1 << ms_mode; in nvc0_validate_fb()
Dnvc0_tex.c235 tic[7] |= mt->ms_mode << GM107_TIC2_7_MULTI_SAMPLE_COUNT__SHIFT; in gm107_create_texture_view()
437 tic[7] |= mt->ms_mode << 12; in gf100_create_texture_view()
Dnvc0_surface.c325 IMMED_NVC0(push, NVC0_3D(MULTISAMPLE_MODE), mt->ms_mode); in nvc0_clear_render_target()
673 IMMED_NVC0(push, NVC0_3D(MULTISAMPLE_MODE), mt->ms_mode); in nvc0_clear_depth_stencil()
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_state_validate.c25 unsigned ms_mode = NV50_3D_MULTISAMPLE_MODE_MS1; in nv50_validate_fb() local
82 assert(!mt->ms_mode); in nv50_validate_fb()
85 ms_mode = mt->ms_mode; in nv50_validate_fb()
114 ms_mode = mt->ms_mode; in nv50_validate_fb()
128 PUSH_DATA (push, ms_mode); in nv50_validate_fb()
136 unsigned ms = 1 << ms_mode; in nv50_validate_fb()
Dnv50_miptree.c214 mt->ms_mode = NV50_3D_MULTISAMPLE_MODE_MS8; in nv50_miptree_init_ms_mode()
219 mt->ms_mode = NV50_3D_MULTISAMPLE_MODE_MS4; in nv50_miptree_init_ms_mode()
224 mt->ms_mode = NV50_3D_MULTISAMPLE_MODE_MS2; in nv50_miptree_init_ms_mode()
229 mt->ms_mode = NV50_3D_MULTISAMPLE_MODE_MS1; in nv50_miptree_init_ms_mode()
Dnv50_resource.h56 uint8_t ms_mode; member
Dnv50_surface.c332 PUSH_DATA (push, mt->ms_mode); in nv50_clear_render_target()
427 PUSH_DATA (push, mt->ms_mode); in nv50_clear_depth_stencil()
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_resource.h36 unsigned ms_mode; member
Dnv30_miptree.c376 mt->ms_mode = 0x00004000; in nv30_miptree_create()
381 mt->ms_mode = 0x00003000; in nv30_miptree_create()
386 mt->ms_mode = 0x00000000; in nv30_miptree_create()
408 util_format_is_float(pt->format) || mt->ms_mode) { in nv30_miptree_create()
Dnv30_state_validate.c56 rt_format |= mt->ms_mode; in nv30_validate_fb()