mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Don't assign NULL to GLXDrawable
This commit is contained in:
@@ -56,7 +56,7 @@ struct GLWindowingData
|
||||
|
||||
struct GLWindowingData
|
||||
{
|
||||
GLWindowingData() { dpy = NULL; ctx = NULL; wnd = NULL; }
|
||||
GLWindowingData() { dpy = NULL; ctx = NULL; wnd = 0; }
|
||||
|
||||
void SetCtx(void *c) { ctx = (GLXContext)c; }
|
||||
Display *dpy;
|
||||
|
||||
Reference in New Issue
Block a user