summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2015-06-25 08:20:01 -0700
committerIan Romanick <[email protected]>2015-08-03 11:04:49 -0700
commit680d09b072af7ea1541cfd4fbc62c83e8bd02d0d (patch)
tree7a7644da48eff8a5a8f333981842e5619239b256 /src/mesa/drivers
parent5b6218395c303ff82a19294c05c63c7b92d24e3f (diff)
i965: Trivial formatting changes in brw_draw_upload.c
Signed-off-by: Ian Romanick <[email protected]> Acked-by: Jason Ekstrand <[email protected]> Reviewed-by: Juha-Pekka Heikkila <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/dri/i965/brw_draw_upload.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c
index c6dd69bbd29..cbfd5855410 100644
--- a/src/mesa/drivers/dri/i965/brw_draw_upload.c
+++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c
@@ -649,7 +649,8 @@ emit_vertex_buffer_state(struct brw_context *brw,
}
#define EMIT_VERTEX_BUFFER_STATE(...) __map = emit_vertex_buffer_state(__VA_ARGS__, __map)
-static void brw_emit_vertices(struct brw_context *brw)
+static void
+brw_emit_vertices(struct brw_context *brw)
{
GLuint i;
@@ -859,7 +860,8 @@ const struct brw_tracked_state brw_vertices = {
.emit = brw_emit_vertices,
};
-static void brw_upload_indices(struct brw_context *brw)
+static void
+brw_upload_indices(struct brw_context *brw)
{
struct gl_context *ctx = &brw->ctx;
const struct _mesa_index_buffer *index_buffer = brw->ib.ib;
@@ -939,7 +941,8 @@ const struct brw_tracked_state brw_indices = {
.emit = brw_upload_indices,
};
-static void brw_emit_index_buffer(struct brw_context *brw)
+static void
+brw_emit_index_buffer(struct brw_context *brw)
{
const struct _mesa_index_buffer *index_buffer = brw->ib.ib;
GLuint cut_index_setting;