diff options
author | Eric Anholt <[email protected]> | 2014-08-14 13:27:11 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-08-15 12:01:32 -0700 |
commit | 7c65b714ed974248f09dcc0b4f020b2e2bf50227 (patch) | |
tree | 95fb853a19d0f58c95c3a4ffb7d8b492f6ca49e7 /src/gallium/drivers/vc4/vc4_qir.c | |
parent | f663102585f9654200e531b42d5e8831ba7ed77f (diff) |
vc4: Add support for blending.
Passes blendminmax and blendsquare. glean's more serious blendFunc fails
in simulation due to binner memory overflow (I really need to work around
that), and fbo-blending-formats fails due to Mesa refusing one of the
getter requests, even before it could fail due to the driver not actually
supporting different formats yet.
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 6509a2bb621..0911e4e326d 100644 --- a/src/gallium/drivers/vc4/vc4_qir.c +++ b/src/gallium/drivers/vc4/vc4_qir.c @@ -63,6 +63,7 @@ static const struct qir_op_info qir_op_info[] = { [QOP_VPM_READ] = { "vpm_read", 0, 1, true }, [QOP_TLB_PASSTHROUGH_Z_WRITE] = { "tlb_passthrough_z", 0, 0, true }, [QOP_TLB_COLOR_WRITE] = { "tlb_color", 0, 1, true }, + [QOP_TLB_COLOR_READ] = { "tlb_color_read", 0, 0, true }, [QOP_VARY_ADD_C] = { "vary_add_c", 1, 1 }, [QOP_FRAG_X] = { "frag_x", 1, 0 }, |