aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/jumper/SkJumper.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/jumper/SkJumper.cpp b/src/jumper/SkJumper.cpp
index 943b23c124..7c72e85711 100644
--- a/src/jumper/SkJumper.cpp
+++ b/src/jumper/SkJumper.cpp
@@ -89,8 +89,6 @@ static K kConstants = {
M(lerp_u8) \
M(lerp_565) \
M(load_tables) \
- M(load_tables_u16_be) \
- M(load_tables_rgb_u16_be) \
M(byte_tables) \
M(byte_tables_rgb) \
M(table_r) M(table_g) M(table_b) M(table_a) \
@@ -136,6 +134,11 @@ static K kConstants = {
M(linear_gradient) \
M(linear_gradient_2stops)
+#if 0 // b/37433905
+ M(load_tables_u16_be)
+ M(load_tables_rgb_u16_be)
+#endif
+
// We can't express the real types of most stage functions portably, so we use a stand-in.
// We'll only ever call start_pipeline(), which then chains into the rest for us.
using StageFn = void(void);