summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/common/driverfuncs.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-09-20 06:43:24 -0700
committerKeith Whitwell <keith@tungstengraphics.com>2008-09-21 09:44:30 -0700
commit6b146214dc16b441376d8dcaba21bcc4256a2402 (patch)
tree65d37d028408c537f1742491ff02dfe6b55ad947 /src/mesa/drivers/common/driverfuncs.c
parent7ce597508e7400e962c8fdb2d255f9887cb9c710 (diff)
mesa: move rastpos helper to tnl
Diffstat (limited to 'src/mesa/drivers/common/driverfuncs.c')
-rw-r--r--src/mesa/drivers/common/driverfuncs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c
index 9e2cce5bbe..986f751bdc 100644
--- a/src/mesa/drivers/common/driverfuncs.c
+++ b/src/mesa/drivers/common/driverfuncs.c
@@ -81,6 +81,7 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
/* framebuffer/image functions */
driver->Clear = _swrast_Clear;
driver->Accum = _swrast_Accum;
+ driver->RasterPos = _tnl_RasterPos;
driver->DrawPixels = _swrast_DrawPixels;
driver->ReadPixels = _swrast_ReadPixels;
driver->CopyPixels = _swrast_CopyPixels;