Home
last modified time | relevance | path

Searched refs:hw_bt_pool (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_binding_tables.c65 if (brw->hw_bt_pool.next_offset + bytes >= brw->hw_bt_pool.bo->size - 128) { in reserve_hw_bt_space()
69 uint32_t offset = brw->hw_bt_pool.next_offset; in reserve_hw_bt_space()
77 brw->hw_bt_pool.next_offset += ALIGN(bytes, 64); in reserve_hw_bt_space()
379 if (!brw->hw_bt_pool.bo) { in gen7_enable_hw_binding_tables()
389 brw->hw_bt_pool.bo = drm_intel_bo_alloc(brw->bufmgr, "hw_bt", in gen7_enable_hw_binding_tables()
391 brw->hw_bt_pool.next_offset = 0; in gen7_enable_hw_binding_tables()
414 OUT_RELOC64(brw->hw_bt_pool.bo, I915_GEM_DOMAIN_SAMPLER, 0, dw1); in gen7_enable_hw_binding_tables()
415 OUT_BATCH(brw->hw_bt_pool.bo->size); in gen7_enable_hw_binding_tables()
417 OUT_RELOC(brw->hw_bt_pool.bo, I915_GEM_DOMAIN_SAMPLER, 0, dw1); in gen7_enable_hw_binding_tables()
418 OUT_RELOC(brw->hw_bt_pool.bo, I915_GEM_DOMAIN_SAMPLER, 0, in gen7_enable_hw_binding_tables()
[all …]
Dbrw_context.c1190 drm_intel_bo_unreference(brw->hw_bt_pool.bo); in intelDestroyContext()
1191 brw->hw_bt_pool.bo = NULL; in intelDestroyContext()
Dbrw_context.h1116 } hw_bt_pool; member