summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/r300_emit.h
diff options
context:
space:
mode:
authorOliver McFadden <z3ro.geek@gmail.com>2007-05-09 14:19:45 +0000
committerOliver McFadden <z3ro.geek@gmail.com>2007-05-09 14:19:45 +0000
commit7b165de5f8a4c3d99b8b9f1820e12d5899b3884f (patch)
tree98ad7b0555d3b833dde0926b6fc944af497489e4 /src/mesa/drivers/dri/r300/r300_emit.h
parent76d7b62cd27fba8b5739e6523fdbf9a14eedefe7 (diff)
r300: Last of the indent changes. :)
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_emit.h')
-rw-r--r--src/mesa/drivers/dri/r300/r300_emit.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_emit.h b/src/mesa/drivers/dri/r300/r300_emit.h
index cf428524d6..8922d8c57d 100644
--- a/src/mesa/drivers/dri/r300/r300_emit.h
+++ b/src/mesa/drivers/dri/r300/r300_emit.h
@@ -209,8 +209,7 @@ void static inline end_3d(r300ContextPtr rmesa)
drm_radeon_cmd_header_t *cmd = NULL;
cmd =
- (drm_radeon_cmd_header_t *) r300AllocCmdBuf(rmesa, 1,
- __FUNCTION__);
+ (drm_radeon_cmd_header_t *) r300AllocCmdBuf(rmesa, 1, __FUNCTION__);
cmd[0].header.cmd_type = R300_CMD_END3D;
}
@@ -219,8 +218,7 @@ void static inline cp_delay(r300ContextPtr rmesa, unsigned short count)
drm_radeon_cmd_header_t *cmd = NULL;
cmd =
- (drm_radeon_cmd_header_t *) r300AllocCmdBuf(rmesa, 1,
- __FUNCTION__);
+ (drm_radeon_cmd_header_t *) r300AllocCmdBuf(rmesa, 1, __FUNCTION__);
cmd[0].i = cmdcpdelay(count);
}
@@ -229,16 +227,14 @@ void static inline cp_wait(r300ContextPtr rmesa, unsigned char flags)
drm_radeon_cmd_header_t *cmd = NULL;
cmd =
- (drm_radeon_cmd_header_t *) r300AllocCmdBuf(rmesa, 1,
- __FUNCTION__);
+ (drm_radeon_cmd_header_t *) r300AllocCmdBuf(rmesa, 1, __FUNCTION__);
cmd[0].i = cmdwait(flags);
}
/**
* fire vertex buffer
*/
-static void inline
-fire_AOS(r300ContextPtr rmesa, int vertex_count, int type)
+static void inline fire_AOS(r300ContextPtr rmesa, int vertex_count, int type)
{
int cmd_reserved = 0;
int cmd_written = 0;