st/mesa: determine Const.MaxSamples in init_extensions
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>
Thu, 28 Jul 2011 13:26:01 +0000 (15:26 +0200)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Thu, 4 Aug 2011 13:38:49 +0000 (15:38 +0200)
v2: Check for non-pow2 sample counts as well.

src/mesa/state_tracker/st_extensions.c

index b5f6d356eb067863621ec2d74ba15f36ff05c8a4..8e900934054ed6a9e4d23f36751d0e64fa8d902a 100644 (file)
@@ -228,6 +228,7 @@ void st_init_extensions(struct st_context *st)
 {
    struct pipe_screen *screen = st->pipe->screen;
    struct gl_context *ctx = st->ctx;
+   int i;
 
    /*
     * Extensions that are supported by all Gallium drivers:
@@ -605,6 +606,16 @@ void st_init_extensions(struct st_context *st)
       ctx->Extensions.EXT_packed_float = GL_TRUE;
    }
 
+   /* Maximum sample count. */
+   for (i = 16; i > 0; --i) {
+      if (screen->is_format_supported(screen, PIPE_FORMAT_B8G8R8A8_UNORM,
+                                      PIPE_TEXTURE_2D, i,
+                                      PIPE_BIND_RENDER_TARGET)) {
+         ctx->Const.MaxSamples = i;
+         break;
+      }
+   }
+
    if (screen->get_param(screen, PIPE_CAP_SEAMLESS_CUBE_MAP_PER_TEXTURE)) {
       ctx->Extensions.ARB_seamless_cube_map = GL_TRUE;
       ctx->Extensions.AMD_seamless_cubemap_per_texture = GL_TRUE;