summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r200/r200_context.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2010-01-18 20:51:15 -0500
committerAlex Deucher <alexdeucher@gmail.com>2010-01-18 20:56:58 -0500
commit1ced546577745d361ad06577914f44f484656d37 (patch)
treee95f363858c057a78bfd50fc4f8075c647ae55f2 /src/mesa/drivers/dri/r200/r200_context.c
parent047719182f2df147449535d7573b2f9653306a2e (diff)
r200: add blit support
Only enabled with KMS.
Diffstat (limited to 'src/mesa/drivers/dri/r200/r200_context.c')
-rw-r--r--src/mesa/drivers/dri/r200/r200_context.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c
index f34e319222..217004c265 100644
--- a/src/mesa/drivers/dri/r200/r200_context.c
+++ b/src/mesa/drivers/dri/r200/r200_context.c
@@ -294,6 +294,7 @@ GLboolean r200CreateContext( const __GLcontextModes *glVisual,
if ( !rmesa )
return GL_FALSE;
+ rmesa->radeon.radeonScreen = screen;
r200_init_vtbl(&rmesa->radeon);
/* init exp fog table data */
r200InitStaticFogData();
@@ -330,6 +331,10 @@ GLboolean r200CreateContext( const __GLcontextModes *glVisual,
r200InitShaderFuncs(&functions);
radeonInitQueryObjFunctions(&functions);
+ if (rmesa->radeon.radeonScreen->kernel_mm) {
+ r200_init_texcopy_functions(&functions);
+ }
+
if (!radeonInitContext(&rmesa->radeon, &functions,
glVisual, driContextPriv,
sharedContextPrivate)) {