From: Mikko Rasa Date: Mon, 14 Dec 2015 11:19:03 +0000 (+0200) Subject: Use None in place of 0 for XIDs X-Git-Url: http://git.tdb.fi/?p=geometrycompositor.git;a=commitdiff_plain;h=62900cf0992729678e14fe61f6f95473de2b4d1b Use None in place of 0 for XIDs --- diff --git a/source/main.c b/source/main.c index 23c061b..6e92cae 100644 --- a/source/main.c +++ b/source/main.c @@ -827,14 +827,14 @@ void update_root_pixmap(Compositor *compositor, CompositedScreen *screen) if(screen->root_glx_pixmap) { glXDestroyPixmap(compositor->display, screen->root_glx_pixmap); - screen->root_glx_pixmap = 0; + screen->root_glx_pixmap = None; } XGetWindowProperty(compositor->display, screen->root, compositor->root_pmap_atom, 0, 1, False, XA_PIXMAP, &prop_type, &prop_format, &length, &overflow, (unsigned char **)&pixmap); if(prop_type!=XA_PIXMAP || prop_format!=32) { - screen->root_pixmap = 0; + screen->root_pixmap = None; return; } @@ -892,8 +892,8 @@ int initialize_screen(Compositor *compositor, unsigned number) return 0; XRRFreeScreenResources(xrr_res); - screen->root_pixmap = 0; - screen->root_glx_pixmap = 0; + screen->root_pixmap = None; + screen->root_glx_pixmap = None; update_geometry_correction(compositor, screen); update_root_pixmap(compositor, screen); @@ -1023,7 +1023,7 @@ void shutdown_screen(Compositor *compositor, CompositedScreen *screen) for(i=0; i<3; ++i) glDeleteShader(screen->shaders[i]); - glXMakeContextCurrent(compositor->display, 0, 0, NULL); + glXMakeContextCurrent(compositor->display, None, None, NULL); glXDestroyContext(compositor->display, screen->glx_context); glXDestroyWindow(compositor->display, screen->glx_window); XDestroyWindow(compositor->display, screen->render_window);