winex11.drv: Remove get_drawable.

This commit is contained in:
Roderick Colenbrander 2007-01-01 22:37:54 +01:00 committed by Alexandre Julliard
parent 3ff86bcfb7
commit 86d4a9e078
1 changed files with 0 additions and 15 deletions

View File

@ -528,21 +528,6 @@ static inline Wine_GLContext *get_context_from_GLXContext(GLXContext ctx)
return ret;
}
/**
* get_drawable (internal)
*
* Retrieve the GLX drawable to use on a given DC.
*/
inline static Drawable get_drawable( HDC hdc )
{
GLXDrawable drawable;
enum x11drv_escape_codes escape = X11DRV_GET_GLX_DRAWABLE;
if (!ExtEscape( hdc, X11DRV_ESCAPE, sizeof(escape), (LPCSTR)&escape,
sizeof(drawable), (LPSTR)&drawable )) drawable = 0;
return drawable;
}
/**
* get_hdc_from_Drawable (internal)
*