more changes wrt passing x, y, w, h to render
This commit is contained in:
parent
fdabd3daf9
commit
ab68bcfb1e
2 changed files with 3 additions and 3 deletions
|
@ -158,7 +158,7 @@ void (*paint)(Window win, Appearance *l, int x, int y, int w, int h);
|
||||||
|
|
||||||
void render_startup(void);
|
void render_startup(void);
|
||||||
void init_appearance(Appearance *l);
|
void init_appearance(Appearance *l);
|
||||||
void x_paint(Window win, Appearance *l, int w, int h);
|
void x_paint(Window win, Appearance *l, int x, int y, int w, int h);
|
||||||
void render_shutdown(void);
|
void render_shutdown(void);
|
||||||
Appearance *appearance_new(SurfaceType type, int numtex);
|
Appearance *appearance_new(SurfaceType type, int numtex);
|
||||||
Appearance *appearance_copy(Appearance *a);
|
Appearance *appearance_copy(Appearance *a);
|
||||||
|
|
|
@ -61,7 +61,7 @@ int main()
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
paint(win, look, 500, 500);
|
paint(win, look, 0, 0, 500, 500);
|
||||||
while (1) {
|
while (1) {
|
||||||
XNextEvent(ob_display, &report);
|
XNextEvent(ob_display, &report);
|
||||||
switch (report.type) {
|
switch (report.type) {
|
||||||
|
@ -70,7 +70,7 @@ int main()
|
||||||
case ConfigureNotify:
|
case ConfigureNotify:
|
||||||
w = report.xconfigure.width;
|
w = report.xconfigure.width;
|
||||||
h = report.xconfigure.height;
|
h = report.xconfigure.height;
|
||||||
paint(win, look, w, h);
|
paint(win, look, 0, 0, w, h);
|
||||||
printf("confignotify %i:%i\n", w, h);
|
printf("confignotify %i:%i\n", w, h);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue