summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/intel_state.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2006-09-20 15:00:24 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2006-09-20 15:00:24 +0000
commitf1d6ad6fe2e7813fcb236d63ccddfdf58f8c2f37 (patch)
tree1adb9777f326c9a70ad29428f50e57948386e4b9 /src/mesa/drivers/dri/i965/intel_state.c
parentb5d0f6c17f637e9926813bbc9f4fa241a5f876dc (diff)
downloadexternal_mesa3d-f1d6ad6fe2e7813fcb236d63ccddfdf58f8c2f37.zip
external_mesa3d-f1d6ad6fe2e7813fcb236d63ccddfdf58f8c2f37.tar.gz
external_mesa3d-f1d6ad6fe2e7813fcb236d63ccddfdf58f8c2f37.tar.bz2
remove some dead code
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_state.c')
-rw-r--r--src/mesa/drivers/dri/i965/intel_state.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_state.c b/src/mesa/drivers/dri/i965/intel_state.c
index a471f67..ec6e046 100644
--- a/src/mesa/drivers/dri/i965/intel_state.c
+++ b/src/mesa/drivers/dri/i965/intel_state.c
@@ -182,39 +182,6 @@ static void intelClearColor(GLcontext *ctx, const GLfloat color[4])
}
-static void intelCalcViewport( GLcontext *ctx )
-{
- struct intel_context *intel = intel_context(ctx);
- const GLfloat *v = ctx->Viewport._WindowMap.m;
- GLfloat *m = intel->ViewportMatrix.m;
- GLint h = 0;
-
- if (intel->driDrawable)
- h = intel->driDrawable->h + SUBPIXEL_Y;
-
- /* See also intel_translate_vertex. SUBPIXEL adjustments can be done
- * via state vars, too.
- */
- m[MAT_SX] = v[MAT_SX];
- m[MAT_TX] = v[MAT_TX] + SUBPIXEL_X;
- m[MAT_SY] = - v[MAT_SY];
- m[MAT_TY] = - v[MAT_TY] + h;
- m[MAT_SZ] = v[MAT_SZ] * intel->depth_scale;
- m[MAT_TZ] = v[MAT_TZ] * intel->depth_scale;
-}
-
-static void intelViewport( GLcontext *ctx,
- GLint x, GLint y,
- GLsizei width, GLsizei height )
-{
- intelCalcViewport( ctx );
-}
-
-static void intelDepthRange( GLcontext *ctx,
- GLclampd nearval, GLclampd farval )
-{
- intelCalcViewport( ctx );
-}
/* Fallback to swrast for select and feedback.
*/
@@ -228,8 +195,6 @@ static void intelRenderMode( GLcontext *ctx, GLenum mode )
void intelInitStateFuncs( struct dd_function_table *functions )
{
functions->RenderMode = intelRenderMode;
- functions->Viewport = intelViewport;
- functions->DepthRange = intelDepthRange;
functions->ClearColor = intelClearColor;
}