i965: Give the push constants and pull constants unique function names.

This helps clarify profiling results.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Eric Anholt
2011-04-21 18:33:22 -07:00
parent 03b2e0fcdf
commit 530de3a2f5
2 changed files with 4 additions and 4 deletions
@@ -315,7 +315,7 @@ brw_create_constant_surface(struct brw_context *brw,
* state atom.
*/
static void
prepare_wm_constants(struct brw_context *brw)
prepare_wm_pull_constants(struct brw_context *brw)
{
struct gl_context *ctx = &brw->intel.ctx;
struct intel_context *intel = &brw->intel;
@@ -359,7 +359,7 @@ const struct brw_tracked_state brw_wm_constants = {
.brw = (BRW_NEW_FRAGMENT_PROGRAM),
.cache = 0
},
.prepare = prepare_wm_constants,
.prepare = prepare_wm_pull_constants,
};
/**
+2 -2
View File
@@ -35,7 +35,7 @@
#include "intel_batchbuffer.h"
static void
prepare_wm_constants(struct brw_context *brw)
gen6_prepare_wm_push_constants(struct brw_context *brw)
{
struct intel_context *intel = &brw->intel;
struct gl_context *ctx = &intel->ctx;
@@ -91,7 +91,7 @@ const struct brw_tracked_state gen6_wm_constants = {
.brw = BRW_NEW_FRAGMENT_PROGRAM,
.cache = 0,
},
.prepare = prepare_wm_constants,
.prepare = gen6_prepare_wm_push_constants,
};
static void