comparison src/video/x11/SDL_x11video.c @ 499:f480ecd70499

Added an aborted try at making fullscreen work on Xinerama screen != 0
author Sam Lantinga <slouken@libsdl.org>
date Mon, 30 Sep 2002 00:35:25 +0000
parents bb2d68294e81
children 08588ee79a67
comparison
equal deleted inserted replaced
498:4b8ff8ac2c07 499:f480ecd70499
280 xattr.override_redirect = True; 280 xattr.override_redirect = True;
281 xattr.background_pixel = def_vis ? BlackPixel(SDL_Display, SDL_Screen) : 0; 281 xattr.background_pixel = def_vis ? BlackPixel(SDL_Display, SDL_Screen) : 0;
282 xattr.border_pixel = 0; 282 xattr.border_pixel = 0;
283 xattr.colormap = SDL_XColorMap; 283 xattr.colormap = SDL_XColorMap;
284 284
285 FSwindow = XCreateWindow(SDL_Display, SDL_Root, 0, 0, 32, 32, 0, 285 FSwindow = XCreateWindow(SDL_Display, SDL_Root,
286 xinerama_x, xinerama_y, 32, 32, 0,
286 this->hidden->depth, InputOutput, SDL_Visual, 287 this->hidden->depth, InputOutput, SDL_Visual,
287 CWOverrideRedirect | CWBackPixel | CWBorderPixel 288 CWOverrideRedirect | CWBackPixel | CWBorderPixel
288 | CWColormap, 289 | CWColormap,
289 &xattr); 290 &xattr);
290 291