diff options
author | Christoph Bumiller <[email protected]> | 2013-04-03 13:19:15 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2013-04-03 13:19:15 +0200 |
commit | 80eef069f032af921554ba0e03062d84488d3f6c (patch) | |
tree | b39f50830d95fc64642d4e34b0ea112fff4f5379 /src/gallium | |
parent | 4de70bf43c5715711b1d287590470df16e6cf837 (diff) |
nv50,nvc0: remove MS resolve formats hack
Mesa now allows BlitFramebuffer resolve between RGBA and BGRA.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_screen.c | 5 | ||||
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_screen.c | 10 |
2 files changed, 0 insertions, 15 deletions
diff --git a/src/gallium/drivers/nv50/nv50_screen.c b/src/gallium/drivers/nv50/nv50_screen.c index 53eeeb6302a..55081beb300 100644 --- a/src/gallium/drivers/nv50/nv50_screen.c +++ b/src/gallium/drivers/nv50/nv50_screen.c @@ -65,11 +65,6 @@ nv50_screen_is_format_supported(struct pipe_screen *pscreen, if (nv50_screen(pscreen)->tesla->oclass < NVA0_3D_CLASS) return FALSE; break; - case PIPE_FORMAT_R8G8B8A8_UNORM: - case PIPE_FORMAT_R8G8B8X8_UNORM: - /* HACK: GL requires equal formats for MS resolve and window is BGRA */ - if (bindings & PIPE_BIND_RENDER_TARGET) - return FALSE; default: break; } diff --git a/src/gallium/drivers/nvc0/nvc0_screen.c b/src/gallium/drivers/nvc0/nvc0_screen.c index a46fb388e64..f2dd65ba0ca 100644 --- a/src/gallium/drivers/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nvc0/nvc0_screen.c @@ -51,16 +51,6 @@ nvc0_screen_is_format_supported(struct pipe_screen *pscreen, if (!util_format_is_supported(format, bindings)) return FALSE; - switch (format) { - case PIPE_FORMAT_R8G8B8A8_UNORM: - case PIPE_FORMAT_R8G8B8X8_UNORM: - /* HACK: GL requires equal formats for MS resolve and window is BGRA */ - if (bindings & PIPE_BIND_RENDER_TARGET) - return FALSE; - default: - break; - } - if ((bindings & PIPE_BIND_SAMPLER_VIEW) && (target != PIPE_BUFFER)) if (util_format_get_blocksizebits(format) == 3 * 32) return FALSE; |