projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1770c3
)
miniglx/glut: should use the x/y pos to create window
author
Dave Airlie
<airlied@linux.ie>
Tue, 8 May 2007 00:49:31 +0000
(10:49 +1000)
committer
Dave Airlie
<airlied@linux.ie>
Tue, 8 May 2007 00:49:31 +0000
(10:49 +1000)
This allows moving miniglx glut windows around the framebuffer
src/glut/mini/window.c
patch
|
blob
|
history
diff --git
a/src/glut/mini/window.c
b/src/glut/mini/window.c
index 73266769c535fdc901c8d90bb40dc1070307696a..5a59e64de6c68a0941f1a8cd363b40fd22c4fe36 100644
(file)
--- a/
src/glut/mini/window.c
+++ b/
src/glut/mini/window.c
@@
-90,7
+90,7
@@
int APIENTRY glutCreateWindow (const char *title)
attr.event_mask = StructureNotifyMask | ExposureMask;
mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
- win = XCreateWindow( dpy, root,
0, 0
, g_width, g_height,
+ win = XCreateWindow( dpy, root,
g_xpos, g_ypos
, g_width, g_height,
0, visinfo->depth, InputOutput,
visinfo->visual, mask, &attr );
if (!win) {