diff options
author | Christian Gmeiner <[email protected]> | 2019-10-20 08:02:11 +0200 |
---|---|---|
committer | Christian Gmeiner <[email protected]> | 2019-10-20 10:20:22 +0200 |
commit | cd4528563f6e57e6f73a0a8b6d4875d6f5ec0563 (patch) | |
tree | 2ff89e202ae256c838f7c4acc0504a21f5f03b9f /src/gallium | |
parent | b30e01aef5692be890f3f6ab944129b84d998254 (diff) |
etnaviv: fix code style
Fixes: 1194afdfe35 ("etnaviv: rework the stream flush to always go through the context flush")
Signed-off-by: Christian Gmeiner <[email protected]>
Reviewed-by: Jonathan Marek <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_context.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_context.c b/src/gallium/drivers/etnaviv/etnaviv_context.c index 5fdc77699ee..06b634d0966 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_context.c +++ b/src/gallium/drivers/etnaviv/etnaviv_context.c @@ -355,7 +355,8 @@ etna_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info) pipe_resource_reference(&indexbuf, NULL); } -static void etna_reset_gpu_state(struct etna_context *ctx) +static void +etna_reset_gpu_state(struct etna_context *ctx) { struct etna_cmd_stream *stream = ctx->stream; |