jumper, disable u16 table load stages

Bug: b/37433905

Change-Id: I829d76967f9da162388bad3f6bc2484d2a28043d
Reviewed-on: https://skia-review.googlesource.com/13771
Commit-Queue: Mike Klein <mtklein@chromium.org>
Reviewed-by: Matt Sarett <msarett@google.com>
This commit is contained in:
Mike Klein 2017-04-18 18:55:33 -04:00 committed by Skia Commit-Bot
parent 3c846cf49c
commit edec99b640

View File

@ -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);