Home
last modified time | relevance | path

Searched refs:bo_flags (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv04_state_fb.c57 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; in nv04_emit_framebuffer() local
74 s->bo, 0, bo_flags); in nv04_emit_framebuffer()
86 s->bo, 0, bo_flags); in nv04_emit_framebuffer()
Dnv20_state_fb.c85 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; in nv20_emit_framebuffer() local
102 s->bo, 0, bo_flags); in nv20_emit_framebuffer()
115 s->bo, 0, bo_flags); in nv20_emit_framebuffer()
Dnv10_state_tex.c159 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; in nv10_emit_tex_obj() local
226 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, in nv10_emit_tex_obj()
232 s->bo, s->offset, bo_flags); in nv10_emit_tex_obj()
Dnv10_state_fb.c100 unsigned bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_RDWR; in nv10_emit_framebuffer() local
128 s->bo, 0, bo_flags); in nv10_emit_framebuffer()
141 s->bo, 0, bo_flags); in nv10_emit_framebuffer()
Dnv20_state_tex.c163 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; in nv20_emit_tex_obj() local
238 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, in nv20_emit_tex_obj()
244 s->bo, s->offset, bo_flags); in nv20_emit_tex_obj()
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_miptree.c279 uint32_t bo_flags; in nvc0_miptree_create() local
310 bo_flags = mt->base.domain | NOUVEAU_BO_NOSNOOP; in nvc0_miptree_create()
313 bo_flags |= NOUVEAU_BO_CONTIG; in nvc0_miptree_create()
315 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config, in nvc0_miptree_create()
Dnvc0_vbo.c250 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; in nvc0_update_user_vbufs() local
255 BCTX_REFN_bo(nvc0->bufctx_3d, VTX_TMP, bo_flags, bo); in nvc0_update_user_vbufs()
277 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; in nvc0_update_user_vbufs_shared() local
288 BCTX_REFN_bo(nvc0->bufctx_3d, VTX_TMP, bo_flags, bo); in nvc0_update_user_vbufs_shared()
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_miptree.c262 uint32_t bo_flags; in nv50_miptree_create() local
288 bo_flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_NOSNOOP; in nv50_miptree_create()
290 bo_flags |= NOUVEAU_BO_CONTIG; in nv50_miptree_create()
292 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config, in nv50_miptree_create()
Dnv50_vbo.c247 const uint32_t bo_flags = NOUVEAU_BO_GART | NOUVEAU_BO_RD; in nv50_update_user_vbufs() local
252 BCTX_REFN_bo(nv50->bufctx_3d, VERTEX_TMP, bo_flags, bo); in nv50_update_user_vbufs()