diff options
author | Brian <[email protected]> | 2007-09-06 17:02:07 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-06 17:02:07 -0600 |
commit | 4c01d498fac14bba751dd87bff235efb5409dca9 (patch) | |
tree | bc2656380fdb2a4b7fff7e7a44623896d1f76b20 /src/mesa/main/dd.h | |
parent | f2f168d0f8a1427e07133eceae290fa2e845f95f (diff) |
Move guts of glRasterPos down into T&L module.
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index caa50dd6826..582e0c334df 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -111,6 +111,11 @@ struct dd_function_table { /** + * Execute glRasterPos, updating the ctx->Current.Raster fields + */ + void (*RasterPos)( GLcontext *ctx, const GLfloat v[4] ); + + /** * \name Image-related functions */ /*@{*/ |