diff options
author | Ilia Mirkin <[email protected]> | 2015-04-01 01:14:39 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-04-02 00:09:14 -0400 |
commit | 6f4c1976f4e5ecdebfe5b9ac16b6d13a5e60eed1 (patch) | |
tree | 6cbe3f10e99545f5d7aa0c75f947642cb7373f61 /src/gallium/drivers/freedreno/a2xx/fd2_program.c | |
parent | d9992ab35a51c574dcfa8049859c0887956ecdf6 (diff) |
freedreno: convert blit program to array for each number of rts
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a2xx/fd2_program.c')
-rw-r--r-- | src/gallium/drivers/freedreno/a2xx/fd2_program.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_program.c b/src/gallium/drivers/freedreno/a2xx/fd2_program.c index cb6281bd5db..5ccfd58bfe1 100644 --- a/src/gallium/drivers/freedreno/a2xx/fd2_program.c +++ b/src/gallium/drivers/freedreno/a2xx/fd2_program.c @@ -474,6 +474,6 @@ fd2_prog_init(struct pipe_context *pctx) ctx->solid_prog.fp = create_solid_fp(); ctx->solid_prog.vp = create_solid_vp(); - ctx->blit_prog.fp = create_blit_fp(); - ctx->blit_prog.vp = create_blit_vp(); + ctx->blit_prog[0].fp = create_blit_fp(); + ctx->blit_prog[0].vp = create_blit_vp(); } |