summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4/vc4_tiling.c
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2017-01-05 15:23:32 -0800
committerEric Anholt <[email protected]>2017-01-05 17:19:54 -0800
commit3a3a0d2d6cf37ff9d6e7f8ec9a6a78b24a353e08 (patch)
treee30ac8fb9f89768d373ee388762e94c6e27eef6d /src/gallium/drivers/vc4/vc4_tiling.c
parent6cf9ff8a6ce1a74260238d7f1fc6ab86c7eaea58 (diff)
vc4: Move the utile_width/height functions to header inlines.
I want these inlined in the callers, particularly with the tiling changes coming up, but we're not building with lto so some caller would suffer.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_tiling.c')
-rw-r--r--src/gallium/drivers/vc4/vc4_tiling.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/gallium/drivers/vc4/vc4_tiling.c b/src/gallium/drivers/vc4/vc4_tiling.c
index 81d9ec48f2e..dab92752ff7 100644
--- a/src/gallium/drivers/vc4/vc4_tiling.c
+++ b/src/gallium/drivers/vc4/vc4_tiling.c
@@ -52,41 +52,6 @@
#include "vc4_context.h"
#include "vc4_tiling.h"
-/** Return the width in pixels of a 64-byte microtile. */
-uint32_t
-vc4_utile_width(int cpp)
-{
- switch (cpp) {
- case 1:
- case 2:
- return 8;
- case 4:
- return 4;
- case 8:
- return 2;
- default:
- fprintf(stderr, "unknown cpp: %d\n", cpp);
- abort();
- }
-}
-
-/** Return the height in pixels of a 64-byte microtile. */
-uint32_t
-vc4_utile_height(int cpp)
-{
- switch (cpp) {
- case 1:
- return 8;
- case 2:
- case 4:
- case 8:
- return 4;
- default:
- fprintf(stderr, "unknown cpp: %d\n", cpp);
- abort();
- }
-}
-
/** Returns the stride in bytes of a 64-byte microtile. */
static uint32_t
vc4_utile_stride(int cpp)