stw: rename stw_wgl_ --> stw_
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 28 Jan 2009 13:45:01 +0000 (13:45 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 28 Jan 2009 13:45:01 +0000 (13:45 +0000)
src/gallium/state_trackers/wgl/icd/stw_icd.c
src/gallium/state_trackers/wgl/shared/stw_context.c
src/gallium/state_trackers/wgl/shared/stw_context.h
src/gallium/state_trackers/wgl/wgl/stw_wgl.c

index 0c1cfade7818c3ad134eff3de4825a7749ff7b30..9c28442c1f9ad55d09184e67f38fdaa63dbd75ab 100644 (file)
@@ -62,7 +62,7 @@ DrvCopyContext(
        dst == NULL)
       return FALSE;
 
-   return stw_wgl_copy_context( src, dst, fuMask );
+   return stw_copy_context( src, dst, fuMask );
 }
 
 DHGLRC APIENTRY
@@ -82,7 +82,7 @@ DrvCreateLayerContext(
    return 0;
 
 found_slot:
-   stw_dev->ctx_array[i].hglrc = stw_wgl_create_context( hdc, iLayerPlane );
+   stw_dev->ctx_array[i].hglrc = stw_create_context( hdc, iLayerPlane );
    if (stw_dev->ctx_array[i].hglrc == NULL)
       return 0;
 
@@ -104,7 +104,7 @@ DrvDeleteContext(
    BOOL success = FALSE;
 
    if (hglrc != NULL) {
-      success = stw_wgl_delete_context( hglrc );
+      success = stw_delete_context( hglrc );
       if (success)
          stw_dev->ctx_array[dhglrc - 1].hglrc = NULL;
    }
index 75cfcda35df4e742c8ea49b08e70180db61fe864..b2cb61241688b01207bee926fe73494d90170f7e 100644 (file)
@@ -47,7 +47,7 @@ static HDC current_hdc = NULL;
 static HGLRC current_hrc = NULL;
 
 BOOL
-stw_wgl_copy_context(
+stw_copy_context(
    HGLRC hglrcSrc,
    HGLRC hglrcDst,
    UINT mask )
@@ -60,7 +60,7 @@ stw_wgl_copy_context(
 }
 
 HGLRC
-stw_wgl_create_context(
+stw_create_context(
    HDC hdc,
    int iLayerPlane )
 {
@@ -136,7 +136,7 @@ stw_wgl_create_context(
 
 
 BOOL
-stw_wgl_delete_context(
+stw_delete_context(
    HGLRC hglrc )
 {
    struct wgl_context **link = &ctx_head;
@@ -193,19 +193,19 @@ get_window_size( HDC hdc, GLuint *width, GLuint *height )
 }
 
 HGLRC
-stw_wgl_get_current_context( void )
+stw_get_current_context( void )
 {
    return current_hrc;
 }
 
 HDC
-stw_wgl_get_current_dc( void )
+stw_get_current_dc( void )
 {
     return current_hdc;
 }
 
 BOOL
-stw_wgl_make_current(
+stw_make_current(
    HDC hdc,
    HGLRC hglrc )
 {
index b418e4e02a7c604d66ba224fb77897e0ca3ae8a2..91e71cf087f59b64777a677d04eb50dc44219cd0 100644 (file)
@@ -46,19 +46,19 @@ wgl_context_from_hdc(HDC hdc );
 //////////////////
 
 
-BOOL stw_wgl_copy_context( HGLRC hglrcSrc,
+BOOL stw_copy_context( HGLRC hglrcSrc,
                            HGLRC hglrcDst,
                            UINT mask );
 
-HGLRC stw_wgl_create_context( HDC hdc, int iLayerPlane );
+HGLRC stw_create_context( HDC hdc, int iLayerPlane );
 
-BOOL stw_wgl_delete_context( HGLRC hglrc );
+BOOL stw_delete_context( HGLRC hglrc );
 
-HGLRC stw_wgl_get_current_context( void );
+HGLRC stw_get_current_context( void );
 
-HDC stw_wgl_get_current_dc( void );
+HDC stw_get_current_dc( void );
 
-BOOL stw_wgl_make_current( HDC hdc, HGLRC hglrc );
+BOOL stw_make_current( HDC hdc, HGLRC hglrc );
 
 
 
index 92fd3406586e04055f51aeb2340c588240a86e7c..f6a4f66dd7d1b38adcbc1bfb6bd56a0538852d8d 100644 (file)
@@ -38,14 +38,14 @@ wglCopyContext(
    HGLRC hglrcDst,
    UINT mask )
 {
-   return stw_wgl_copy_context( hglrcSrc, hglrcDst, mask );
+   return stw_copy_context( hglrcSrc, hglrcDst, mask );
 }
 
 WINGDIAPI HGLRC APIENTRY
 wglCreateContext(
    HDC hdc )
 {
-   return (HGLRC) stw_wgl_create_context( hdc, 0 );
+   return (HGLRC) stw_create_context( hdc, 0 );
 }
 
 WINGDIAPI HGLRC APIENTRY
@@ -53,27 +53,27 @@ wglCreateLayerContext(
    HDC hdc,
    int iLayerPlane )
 {
-   return (HGLRC) stw_wgl_create_context( hdc, iLayerPlane );
+   return (HGLRC) stw_create_context( hdc, iLayerPlane );
 }
 
 WINGDIAPI BOOL APIENTRY
 wglDeleteContext(
    HGLRC hglrc )
 {
-   return stw_wgl_delete_context( hglrc );
+   return stw_delete_context( hglrc );
 }
 
 
 WINGDIAPI HGLRC APIENTRY
 wglGetCurrentContext( VOID )
 {
-   return stw_wgl_get_current_context();
+   return stw_get_current_context();
 }
 
 WINGDIAPI HDC APIENTRY
 wglGetCurrentDC( VOID )
 {
-   return stw_wgl_get_current_dc();
+   return stw_get_current_dc();
 }
 
 WINGDIAPI BOOL APIENTRY
@@ -81,7 +81,7 @@ wglMakeCurrent(
    HDC hdc,
    HGLRC hglrc )
 {
-   return stw_wgl_make_current( hdc, hglrc );
+   return stw_make_current( hdc, hglrc );
 }