diff options
author | Eric Anholt <[email protected]> | 2014-09-30 16:08:23 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-10-01 17:03:35 -0700 |
commit | d7a0502a5440359d1cecd42e58bdb85c2d857824 (patch) | |
tree | c51845d91a4bae9a8d21e956e4deed4e203fa972 /src/gallium/drivers/vc4/vc4_qir.c | |
parent | 1bf2d17a60d112c7ca8da7ab0b539991df96a93d (diff) |
vc4: Add support for the FACE semantic.
Fixes glsl-fs-frontfacing.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_qir.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_qir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_qir.c b/src/gallium/drivers/vc4/vc4_qir.c index 0975460ffec..432fb1bf555 100644 --- a/src/gallium/drivers/vc4/vc4_qir.c +++ b/src/gallium/drivers/vc4/vc4_qir.c @@ -87,6 +87,7 @@ static const struct qir_op_info qir_op_info[] = { [QOP_FRAG_Y] = { "frag_y", 1, 0 }, [QOP_FRAG_Z] = { "frag_z", 1, 0 }, [QOP_FRAG_W] = { "frag_w", 1, 0 }, + [QOP_FRAG_REV_FLAG] = { "frag_rev_flag", 1, 0 }, [QOP_TEX_S] = { "tex_s", 0, 2 }, [QOP_TEX_T] = { "tex_t", 0, 2 }, |