Go to the source code of this file.
Defines | |
#define | BEGIN_BATCH(dwords, relocs) (i915_batchbuffer_check(&intel->base.batch->base, dwords, relocs)) |
#define | OUT_BATCH(d) i915_batchbuffer_dword(&intel->base.batch->base, d) |
#define | OUT_RELOC(buf, flags, mask, delta) |
#define BEGIN_BATCH | ( | dwords, | |||
relocs | ) | (i915_batchbuffer_check(&intel->base.batch->base, dwords, relocs)) |
Definition at line 11 of file intel_batchbuffer.h.
#define OUT_BATCH | ( | d | ) | i915_batchbuffer_dword(&intel->base.batch->base, d) |
Definition at line 15 of file intel_batchbuffer.h.
#define OUT_RELOC | ( | buf, | |||
flags, | |||||
mask, | |||||
delta | ) |
Value:
do { \ assert((delta) >= 0); \ intel_be_offset_relocation(intel->base.batch, delta, buf, flags, mask); \ } while (0)
Definition at line 19 of file intel_batchbuffer.h.