summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/wgl/shared/stw_context.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-01-28 20:39:06 +0000
committerKeith Whitwell <keithw@vmware.com>2009-01-28 20:39:06 +0000
commitcbd368e91be121f1381ef132b64839f5638009f7 (patch)
tree97b7750dfb4c823b6b2e8e0ad0f922e0fdbd07e7 /src/gallium/state_trackers/wgl/shared/stw_context.h
parent866587942c7053cdcb7443ed00ce6d902c010631 (diff)
stw: use proper stw_context pointers in shared interface
Move away from hglrc.
Diffstat (limited to 'src/gallium/state_trackers/wgl/shared/stw_context.h')
-rw-r--r--src/gallium/state_trackers/wgl/shared/stw_context.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/state_trackers/wgl/shared/stw_context.h b/src/gallium/state_trackers/wgl/shared/stw_context.h
index 5e84fc28e6..89a8f900d8 100644
--- a/src/gallium/state_trackers/wgl/shared/stw_context.h
+++ b/src/gallium/state_trackers/wgl/shared/stw_context.h
@@ -25,23 +25,23 @@
*
**************************************************************************/
-#ifndef WGL_CONTEXT_H
-#define WGL_CONTEXT_H
+#ifndef STW_CONTEXT_H
+#define STW_CONTEXT_H
#include <windows.h>
struct st_context;
-struct wgl_context
+struct stw_context
{
struct st_context *st;
HDC hdc;
DWORD color_bits;
- struct wgl_context *next;
+ struct stw_context *next;
};
-struct wgl_context *
-wgl_context_from_hdc(HDC hdc );
+struct stw_context *
+stw_context_from_hdc(HDC hdc );
@@ -50,4 +50,4 @@ wgl_context_from_hdc(HDC hdc );
-#endif /* WGL_CONTEXT_H */
+#endif /* STW_CONTEXT_H */