/external/mesa3d/src/intel/vulkan/ |
D | anv_allocator.c | 1579 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 …]
|
D | genX_query.c | 164 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/ |
D | nv04_state_fb.c | 57 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()
|
D | nv20_state_fb.c | 85 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()
|
D | nv10_state_fb.c | 100 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()
|
D | nv10_state_tex.c | 160 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()
|
D | nv20_state_tex.c | 164 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/ |
D | nvc0_miptree.c | 379 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()
|
D | nvc0_vbo.c | 253 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/ |
D | nv50_miptree.c | 344 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()
|
D | nv50_vbo.c | 257 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/ |
D | radv_amdgpu_bo.c | 51 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/ |
D | si_texture.c | 1699 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/ |
D | 20.0.0.rst | 1630 - anv: Drop bo_flags from anv_bo_pool
|