diff options
author | Brian Paul <brianp@vmware.com> | 2009-01-26 17:23:59 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-01-26 17:23:59 -0700 |
commit | 3cf7f9887ae9f26c006f88071cd69343e2c591e4 (patch) | |
tree | 2b6f245d2b152102d03a40bf3423d37bb920c9fb | |
parent | d0c8ed73cc6f2b08906a18a8d60e3bc364e5e48f (diff) |
i915: rename some functions
-rw-r--r-- | src/mesa/drivers/dri/i915/i915_state.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i915/i915_state.c b/src/mesa/drivers/dri/i915/i915_state.c index f94de41a57..b0334d9d79 100644 --- a/src/mesa/drivers/dri/i915/i915_state.c +++ b/src/mesa/drivers/dri/i915/i915_state.c @@ -352,7 +352,7 @@ intelCalcViewport(GLcontext * ctx) /** Called from ctx->Driver.Viewport() */ static void -intelViewport(GLcontext * ctx, +i915Viewport(GLcontext * ctx, GLint x, GLint y, GLsizei width, GLsizei height) { intelCalcViewport(ctx); @@ -363,7 +363,7 @@ intelViewport(GLcontext * ctx, /** Called from ctx->Driver.DepthRange() */ static void -intelDepthRange(GLcontext * ctx, GLclampd nearval, GLclampd farval) +i915DepthRange(GLcontext * ctx, GLclampd nearval, GLclampd farval) { intelCalcViewport(ctx); } @@ -1032,8 +1032,8 @@ i915InitStateFunctions(struct dd_function_table *functions) functions->StencilFuncSeparate = i915StencilFuncSeparate; functions->StencilMaskSeparate = i915StencilMaskSeparate; functions->StencilOpSeparate = i915StencilOpSeparate; - functions->DepthRange = intelDepthRange; - functions->Viewport = intelViewport; + functions->DepthRange = i915DepthRange; + functions->Viewport = i915Viewport; } |