summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-06 15:16:42 -0700
committerBrian <brian.paul@tungstengraphics.com>2007-11-06 15:22:56 -0700
commita151ad21bb5f5b52f1c1f28f2f09d5c5f5915028 (patch)
treee335fe585c490ef428691017a2fdc3ac0c9cc38a /src/mesa
parent54b43da7e9ae08c9078ba2ca4f8c242dd6aa3bff (diff)
rename xmesa_create_softpipe() xmesa_create_context()
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/pipe/xlib/xm_api.c2
-rw-r--r--src/mesa/pipe/xlib/xmesaP.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/xlib/xm_api.c b/src/mesa/pipe/xlib/xm_api.c
index 0e303d597a..939dfe745b 100644
--- a/src/mesa/pipe/xlib/xm_api.c
+++ b/src/mesa/pipe/xlib/xm_api.c
@@ -1464,7 +1464,7 @@ XMesaContext XMesaCreateContext( XMesaVisual v, XMesaContext share_list )
if (!c)
return NULL;
- pipe = xmesa_create_softpipe( c );
+ pipe = xmesa_create_context( c );
c->st = st_create_context(pipe, &v->mesa_visual,
share_list ? share_list->st : NULL);
diff --git a/src/mesa/pipe/xlib/xmesaP.h b/src/mesa/pipe/xlib/xmesaP.h
index f1ca2a8fe8..c70dc67608 100644
--- a/src/mesa/pipe/xlib/xmesaP.h
+++ b/src/mesa/pipe/xlib/xmesaP.h
@@ -539,7 +539,7 @@ extern void
xmesa_clear(struct pipe_context *pipe, struct pipe_surface *ps, uint value);
extern struct pipe_context *
-xmesa_create_softpipe(XMesaContext xm);
+xmesa_create_context(XMesaContext xm);
extern struct pipe_surface *
xmesa_surface_alloc(struct pipe_context *pipe, GLuint format);