From 19ecf36b134d8fbbf1bc0361594f428080175f5c Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 6 Jul 2017 12:23:15 +0100 Subject: [PATCH] Compile fix for linux with added void* cast --- renderdoc/driver/gl/gl_driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/driver/gl/gl_driver.cpp b/renderdoc/driver/gl/gl_driver.cpp index 411f6134e..3a274dadf 100644 --- a/renderdoc/driver/gl/gl_driver.cpp +++ b/renderdoc/driver/gl/gl_driver.cpp @@ -1569,7 +1569,7 @@ void WrappedOpenGL::ActivateContext(GLWindowingData winData) // consider an attribs created context, to avoid starting capturing when the user is creating // dummy contexts to be able to create the real one. if(ctxdata.attribsCreate) - FirstFrame(ctxdata.ctx, winData.wnd); + FirstFrame(ctxdata.ctx, (void *)winData.wnd); } }