Home
last modified time | relevance | path

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

/external/mesa3d/src/intel/vulkan/
Danv_allocator.c1579 uint64_t bo_flags = 0; in anv_bo_alloc_flags_to_bo_flags() local
1582 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; in anv_bo_alloc_flags_to_bo_flags()
1585 bo_flags |= EXEC_OBJECT_CAPTURE; in anv_bo_alloc_flags_to_bo_flags()
1589 bo_flags |= EXEC_OBJECT_WRITE; in anv_bo_alloc_flags_to_bo_flags()
1593 bo_flags |= EXEC_OBJECT_ASYNC; in anv_bo_alloc_flags_to_bo_flags()
1596 bo_flags |= EXEC_OBJECT_PINNED; in anv_bo_alloc_flags_to_bo_flags()
1598 return bo_flags; in anv_bo_alloc_flags_to_bo_flags()
1622 const uint32_t bo_flags = in anv_device_alloc_bo() local
1624 assert(bo_flags == (bo_flags & ANV_BO_CACHE_SUPPORTED_FLAGS)); in anv_device_alloc_bo()
1652 .flags = bo_flags, in anv_device_alloc_bo()
[all …]
DgenX_query.c164 uint32_t bo_flags = 0; in genX() local
166 bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; in genX()
169 bo_flags |= EXEC_OBJECT_PINNED; in genX()
172 bo_flags |= EXEC_OBJECT_ASYNC; in genX()
/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_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()
Dnv10_state_tex.c160 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; in nv10_emit_tex_obj() local
227 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, in nv10_emit_tex_obj()
233 s->bo, s->offset, bo_flags); in nv10_emit_tex_obj()
Dnv20_state_tex.c164 const int bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART | NOUVEAU_BO_VRAM; in nv20_emit_tex_obj() local
273 s->bo, tx_format, bo_flags | NOUVEAU_BO_OR, in nv20_emit_tex_obj()
279 s->bo, s->offset, bo_flags); in nv20_emit_tex_obj()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_miptree.c379 uint32_t bo_flags; in nvc0_miptree_create() local
436 bo_flags = mt->base.domain | NOUVEAU_BO_NOSNOOP; in nvc0_miptree_create()
439 bo_flags |= NOUVEAU_BO_CONTIG; in nvc0_miptree_create()
441 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config, in nvc0_miptree_create()
Dnvc0_vbo.c253 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; in nvc0_update_user_vbufs() local
258 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_VTX_TMP, bo_flags, bo); in nvc0_update_user_vbufs()
282 const uint32_t bo_flags = NOUVEAU_BO_RD | NOUVEAU_BO_GART; in nvc0_update_user_vbufs_shared() local
293 BCTX_REFN_bo(nvc0->bufctx_3d, 3D_VTX_TMP, bo_flags, bo); in nvc0_update_user_vbufs_shared()
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_miptree.c344 uint32_t bo_flags; in nv50_miptree_create() local
385 bo_flags = mt->base.domain | NOUVEAU_BO_NOSNOOP; in nv50_miptree_create()
387 bo_flags |= NOUVEAU_BO_CONTIG; in nv50_miptree_create()
389 ret = nouveau_bo_new(dev, bo_flags, 4096, mt->total_size, &bo_config, in nv50_miptree_create()
Dnv50_vbo.c257 const uint32_t bo_flags = NOUVEAU_BO_GART | NOUVEAU_BO_RD; in nv50_update_user_vbufs() local
262 BCTX_REFN_bo(nv50->bufctx_3d, 3D_VERTEX_TMP, bo_flags, bo); in nv50_update_user_vbufs()
/external/mesa3d/src/amd/vulkan/winsys/amdgpu/
Dradv_amdgpu_bo.c51 uint32_t bo_flags, in radv_amdgpu_bo_va_op() argument
60 if ((bo_flags & RADEON_FLAG_VA_UNCACHED) && in radv_amdgpu_bo_va_op()
64 if (!(bo_flags & RADEON_FLAG_READ_ONLY)) in radv_amdgpu_bo_va_op()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_texture.c1699 unsigned bo_flags = SI_RESOURCE_FLAG_FORCE_LINEAR | SI_RESOURCE_FLAG_DRIVER_INTERNAL; in si_texture_transfer_map() local
1712 bo_flags |= SI_RESOURCE_FLAG_UNCACHED; in si_texture_transfer_map()
1715 bo_flags); in si_texture_transfer_map()
/external/mesa3d/docs/relnotes/
D20.0.0.rst1630 - anv: Drop bo_flags from anv_bo_pool