diff options
author | Jason Ekstrand <[email protected]> | 2016-05-11 19:59:38 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-05-14 14:18:21 -0700 |
commit | 1cfb4bc890b8d6f898e4d43823e7ffe047296251 (patch) | |
tree | 2943e8471a2e47141856916b63c913ee1dccf08c /src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | |
parent | 64f29070302507e39f50aeeef0472b4d78d2b0cc (diff) |
i965: Use blorp for all stencil blits
We used to use a meta path because blorp didn't support 16x MSAA. Now it
does, so we don't need the meta paths anymore.
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_blorp_blit.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp index ce1a5d2d095..1b8e1120ce8 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp +++ b/src/mesa/drivers/dri/i965/brw_blorp_blit.cpp @@ -294,10 +294,6 @@ brw_blorp_framebuffer(struct brw_context *brw, if (brw->gen < 6) return mask; - /* There is support for only up to eight samples. */ - if (readFb->Visual.samples > 8 || drawFb->Visual.samples > 8) - return mask; - static GLbitfield buffer_bits[] = { GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, |