diff options
author | Kenneth Graunke <[email protected]> | 2014-08-29 15:15:43 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-08-31 01:48:10 -0700 |
commit | e34a363a781a24b2cf6930c4d37f781ffec8a19a (patch) | |
tree | caf756e6663f505f4f9ad72787d94e49b618a106 /src/mesa | |
parent | 8b5ac1df17608e0d0d5ce412988ee8de97f61405 (diff) |
i965: Add 2x MSAA support to Broadwell fast clear code.
According to the cited documentation section (but in the newer docs),
x_scaledown is the same for 2x and 4x MSAA.
+47 piglits.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=83081
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Cc: "10.3" <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_meta_fast_clear.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c b/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c index bcc8827709f..168e5b11d2c 100644 --- a/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c +++ b/src/mesa/drivers/dri/i965/brw_meta_fast_clear.c @@ -282,6 +282,7 @@ get_fast_clear_rect(struct brw_context *brw, struct gl_framebuffer *fb, * factor is 2 vertically and either 2 or 8 horizontally. */ switch (irb->mt->num_samples) { + case 2: case 4: x_scaledown = 8; break; |