Whitespace cleanup again
Change-Id: I38ab9ff141eb088084a4c0e664f327ceb89fcf70
Reviewed-on: https://skia-review.googlesource.com/140784
Commit-Queue: Hal Canary <halcanary@google.com>
Auto-Submit: Hal Canary <halcanary@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
diff --git a/src/compute/hs/gen/transpose.c b/src/compute/hs/gen/transpose.c
index f99e966..de15c62 100644
--- a/src/compute/hs/gen/transpose.c
+++ b/src/compute/hs/gen/transpose.c
@@ -33,7 +33,7 @@
{
// get mapping array
uint32_t * map_curr = ALLOCA(rows * sizeof(*map_curr));
- uint32_t * map_next = ALLOCA(rows * sizeof(*map_next));
+ uint32_t * map_next = ALLOCA(rows * sizeof(*map_next));
// init the mapping array
for (uint32_t ii=0; ii<rows; ii++)
@@ -53,7 +53,7 @@
{
for (uint32_t jj=0; jj<rows; jj++)
{
- if (map_curr[jj] == stay)
+ if (map_curr[jj] == stay)
{
map_next[jj] = stay;
map_next[ii] = stay + (rows << (cc-1));
@@ -88,7 +88,7 @@
static uint32_t cols; // implicit on SIMD/GPU
static
-void
+void
hsg_debug_remap(uint32_t const row_from,
uint32_t const row_to,
uint32_t * const r)
@@ -99,9 +99,9 @@
}
static
-void
+void
hsg_debug_blend(uint32_t const cols_log2,
- uint32_t const row_ll, // lower-left
+ uint32_t const row_ll, // lower-left
uint32_t const row_ur, // upper-right
uint32_t * m)
{