diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-07-10 10:10:31 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-07-10 10:43:23 -0700 |
commit | a2d0ea92ba752c62e59aa681acda7b97fc86d100 (patch) | |
tree | 060586ac835693f1f7b9da25443a0fd2e3a85a49 /src/gallium/drivers/panfrost/pan_invocation.c | |
parent | e4bd6fbe5151ad20a5bd79dacbb7c411edb6bf8f (diff) |
panfrost: Style main Gallium driver
$ astyle *.c *.h --style=linux -s8
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/pan_invocation.c')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_invocation.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/gallium/drivers/panfrost/pan_invocation.c b/src/gallium/drivers/panfrost/pan_invocation.c index 1d1a301d67c..44ee6eb18c2 100644 --- a/src/gallium/drivers/panfrost/pan_invocation.c +++ b/src/gallium/drivers/panfrost/pan_invocation.c @@ -39,13 +39,13 @@ void panfrost_pack_work_groups_compute( - struct mali_vertex_tiler_prefix *out, - unsigned num_x, - unsigned num_y, - unsigned num_z, - unsigned size_x, - unsigned size_y, - unsigned size_z) + struct mali_vertex_tiler_prefix *out, + unsigned num_x, + unsigned num_y, + unsigned num_z, + unsigned size_x, + unsigned size_y, + unsigned size_z) { /* First of all, all 6 values are off-by-one (strictly positive). * Account for that, first by ensuring all values are strictly positive @@ -104,14 +104,14 @@ panfrost_pack_work_groups_compute( /* Packs vertex/tiler descriptors simultaneously */ void panfrost_pack_work_groups_fused( - struct mali_vertex_tiler_prefix *vertex, - struct mali_vertex_tiler_prefix *tiler, - unsigned num_x, - unsigned num_y, - unsigned num_z, - unsigned size_x, - unsigned size_y, - unsigned size_z) + struct mali_vertex_tiler_prefix *vertex, + struct mali_vertex_tiler_prefix *tiler, + unsigned num_x, + unsigned num_y, + unsigned num_z, + unsigned size_x, + unsigned size_y, + unsigned size_z) { panfrost_pack_work_groups_compute(vertex, num_x, num_y, num_z, size_x, size_y, size_z); |