i965/msaa: Remove comment about falsely claiming to support MSAA.
authorPaul Berry <stereotype441@gmail.com>
Mon, 9 Jul 2012 23:23:26 +0000 (16:23 -0700)
committerPaul Berry <stereotype441@gmail.com>
Tue, 24 Jul 2012 21:52:58 +0000 (14:52 -0700)
Gen6+ hardware now supports MSAA properly.

Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
src/mesa/drivers/dri/i965/brw_context.c

index 5a109e30430d1a87e333bd7ce0e99611c895ca5f..62b28be4ee08bbdf7209d83759f8f892f97bd8c3 100644 (file)
@@ -154,11 +154,6 @@ brwCreateContext(int api,
    ctx->Const.MaxTransformFeedbackSeparateComponents =
       BRW_MAX_SOL_BINDINGS / BRW_MAX_SOL_BUFFERS;
 
-   /* Claim to support 4 multisamples, even though we don't.  This is a
-    * requirement for GL 3.0 that we missed until the last minute.  Go ahead and
-    * claim the limit, so that usage of the 4 multisample-based API that is
-    * guaranteed in 3.0 succeeds, even though we only rasterize a single sample.
-    */
    if (intel->gen >= 6)
       ctx->Const.MaxSamples = 4;