i965: Make brwInitFunctions take brw_context rather than intel_screen.
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 27 Sep 2013 21:46:26 +0000 (14:46 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sun, 13 Oct 2013 07:10:44 +0000 (00:10 -0700)
It actually just wants generation checking, and brw->gen is the usual
way of doing that.  In the future, we'll also want to check brw->hw_ctx,
which isn't available from the screen.

While we're changing the function signature, convert from camel case to
our usual naming conventions.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/drivers/dri/i965/brw_context.c

index 740a33ae4d5bd15432d88cd4f9db78f2ed7aacc6..19b03f8078c0c615d9a2a2d91f84f248d97998b6 100644 (file)
@@ -209,8 +209,8 @@ intelFinish(struct gl_context * ctx)
 }
 
 static void
-brwInitDriverFunctions(struct intel_screen *screen,
-                       struct dd_function_table *functions)
+brw_init_driver_functions(struct brw_context *brw,
+                          struct dd_function_table *functions)
 {
    _mesa_init_driver_functions(functions);
 
@@ -232,14 +232,14 @@ brwInitDriverFunctions(struct intel_screen *screen,
 
    brwInitFragProgFuncs( functions );
    brw_init_common_queryobj_functions(functions);
-   if (screen->devinfo->gen >= 6)
+   if (brw->gen >= 6)
       gen6_init_queryobj_functions(functions);
    else
       gen4_init_queryobj_functions(functions);
 
    functions->QuerySamplesForFormat = brw_query_samples_for_format;
 
-   if (screen->devinfo->gen >= 7) {
+   if (brw->gen >= 7) {
       functions->BeginTransformFeedback = gen7_begin_transform_feedback;
       functions->EndTransformFeedback = gen7_end_transform_feedback;
    } else {
@@ -247,7 +247,7 @@ brwInitDriverFunctions(struct intel_screen *screen,
       functions->EndTransformFeedback = brw_end_transform_feedback;
    }
 
-   if (screen->devinfo->gen >= 6)
+   if (brw->gen >= 6)
       functions->GetSamplePosition = gen6_get_sample_position;
 }
 
@@ -520,7 +520,7 @@ brwCreateContext(gl_api api,
 
    brwInitVtbl( brw );
 
-   brwInitDriverFunctions(screen, &functions);
+   brw_init_driver_functions(brw, &functions);
 
    struct gl_context *ctx = &brw->ctx;