Home
last modified time | relevance | path

Searched refs:last_bo (Results 1 – 13 of 13) sorted by relevance

/external/mesa3d/src/intel/tools/
Derror2aub.c297 struct bo *last_bo = NULL; in main() local
372 if (!last_bo || last_bo->type == BO_TYPE_UNKNOWN) in main()
375 int count = ascii85_decode(line+1, (uint32_t **) &last_bo->data, line[0] == ':'); in main()
377 last_bo->size = count * 4; in main()
411 last_bo = find_or_create(&bo_list, ((uint64_t) hi) << 32 | lo, in main()
418 if (last_bo->type == BO_TYPE_UNKNOWN) { in main()
419 last_bo->type = b->type; in main()
420 last_bo->name = b->match; in main()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_batchbuffer.c50 if (intel->batch.last_bo != NULL) { in intel_batchbuffer_reset()
51 drm_intel_bo_unreference(intel->batch.last_bo); in intel_batchbuffer_reset()
52 intel->batch.last_bo = NULL; in intel_batchbuffer_reset()
54 intel->batch.last_bo = intel->batch.bo; in intel_batchbuffer_reset()
67 drm_intel_bo_unreference(intel->batch.last_bo); in intel_batchbuffer_free()
Dintel_context.h102 drm_intel_bo *last_bo; member
Dintel_context.c374 if (intel->batch.last_bo) in intelFinish()
375 drm_intel_bo_wait_rendering(intel->batch.last_bo); in intelFinish()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_gs.c89 start_busy = brw->batch.last_bo && brw_bo_busy(brw->batch.last_bo); in brw_codegen_gs_prog()
111 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_gs_prog()
Dbrw_cs.c112 start_busy = (brw->batch.last_bo && in brw_codegen_cs_prog()
113 brw_bo_busy(brw->batch.last_bo)); in brw_codegen_cs_prog()
142 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_cs_prog()
Dbrw_tes.c68 start_busy = brw->batch.last_bo && brw_bo_busy(brw->batch.last_bo); in brw_codegen_tes_prog()
96 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_tes_prog()
Dbrw_tcs.c105 start_busy = brw->batch.last_bo && brw_bo_busy(brw->batch.last_bo); in brw_codegen_tcs_prog()
135 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_tcs_prog()
Dbrw_vs.c169 start_busy = (brw->batch.last_bo && in brw_codegen_vs_prog()
170 brw_bo_busy(brw->batch.last_bo)); in brw_codegen_vs_prog()
207 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_vs_prog()
Dbrw_wm.c107 start_busy = (brw->batch.last_bo && in brw_codegen_wm_prog()
108 brw_bo_busy(brw->batch.last_bo)); in brw_codegen_wm_prog()
148 if (start_busy && !brw_bo_busy(brw->batch.last_bo)) { in brw_codegen_wm_prog()
Dintel_batchbuffer.c254 if (batch->last_bo != NULL) { in intel_batchbuffer_reset()
255 brw_bo_unreference(batch->last_bo); in intel_batchbuffer_reset()
256 batch->last_bo = NULL; in intel_batchbuffer_reset()
258 batch->last_bo = batch->batch.bo; in intel_batchbuffer_reset()
344 brw_bo_unreference(batch->last_bo); in intel_batchbuffer_free()
Dbrw_context.c324 if (brw->batch.last_bo) in intel_finish()
325 brw_bo_wait_rendering(brw->batch.last_bo); in intel_finish()
Dbrw_context.h494 struct brw_bo *last_bo; member