diff options
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_cmdbuf.h')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_cmdbuf.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h b/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h index 63f51c35772..31b95fd661a 100644 --- a/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h +++ b/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h @@ -28,17 +28,12 @@ void rcommonBeginBatch(radeonContextPtr rmesa, const radeonContextPtr b_l_rmesa = rmesa /** - * Prepare writing n dwords to the command buffer, - * including producing any necessary state emits on buffer wraparound. + * Prepare writing n dwords to the command buffer. Does not cause automatic + * state emits. */ #define BEGIN_BATCH(n) rcommonBeginBatch(b_l_rmesa, n, __FILE__, __FUNCTION__, __LINE__) /** - * Same as BEGIN_BATCH, but do not cause automatic state emits. - */ -#define BEGIN_BATCH_NO_AUTOSTATE(n) rcommonBeginBatch(b_l_rmesa, n, __FILE__, __FUNCTION__, __LINE__) - -/** * Write one dword to the command buffer. */ #define OUT_BATCH(data) \ |