aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/wgl/shared/stw_context.c
diff options
context:
space:
mode:
authorKeith Whitwell <[email protected]>2009-01-28 17:07:15 +0000
committerKeith Whitwell <[email protected]>2009-01-28 17:07:49 +0000
commit66059cd3c95bf5eba7922a4a09c2596514e5e956 (patch)
treefc7fa8d301820f70ab0a2db18a88669df24abea4 /src/gallium/state_trackers/wgl/shared/stw_context.c
parent54688ebdb259c5e8878817a411e24bd98efb8012 (diff)
stw: move get_proc_address and extension functions to shared
Diffstat (limited to 'src/gallium/state_trackers/wgl/shared/stw_context.c')
-rw-r--r--src/gallium/state_trackers/wgl/shared/stw_context.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/wgl/shared/stw_context.c b/src/gallium/state_trackers/wgl/shared/stw_context.c
index b2cb6124168..e17abd73f51 100644
--- a/src/gallium/state_trackers/wgl/shared/stw_context.c
+++ b/src/gallium/state_trackers/wgl/shared/stw_context.c
@@ -37,7 +37,6 @@
#include "shared/stw_winsys.h"
#include "shared/stw_framebuffer.h"
#include "shared/stw_pixelformat.h"
-#include "wgl/stw_wgl_arbmultisample.h"
#include "stw_context.h"
//#include "stw_wgl.h"
@@ -103,7 +102,7 @@ stw_create_context(
0,
0,
0,
- (pf->flags & PF_FLAG_MULTISAMPLED) ? wgl_query_samples() : 0 );
+ (pf->flags & PF_FLAG_MULTISAMPLED) ? stw_query_samples() : 0 );
if (visual == NULL) {
FREE( ctx );
return NULL;