]> icculus.org git repositories - dana/openbox.git/blob - openbox/composite.h
using a window's damage (incl. freeing it) can cause a BadDamage error if the window...
[dana/openbox.git] / openbox / composite.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    composite.h for the Openbox window manager
4    Copyright (c) 2010        Dana Jansens
5    Copyright (c) 2010        Derek Foreman
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #ifndef __composite_h
21 #define __composite_h
22
23 #ifdef USE_COMPOSITING
24 #include <glib.h>
25 #include <GL/gl.h>
26 #include <GL/glx.h>
27
28 #include "geom.h"
29
30 #define MAX_DEPTH 32
31
32 typedef GLXPixmap (*CreatePixmapT)(Display *display,
33                                    GLXFBConfig config,
34                                    int attribute,
35                                    int *value);
36
37 typedef void (*BindTexImageT)(Display *display,
38                               GLXDrawable drawable,
39                               int buffer,
40                               int *attriblist);
41
42 typedef void (*ReleaseTexImageT)(Display *display,
43                                  GLXDrawable drawable,
44                                  int buffer);
45
46 typedef GLXFBConfig *(*GetFBConfigsT) (Display *display,
47                                        int screen,
48                                        int *nElements);
49
50 typedef int (*GetFBConfigAttribT) (Display *display,
51                                    GLXFBConfig config,
52                                    int attribute,
53                                    int *value);
54
55 struct ObCompositor {
56     CreatePixmapT CreatePixmap;
57     BindTexImageT BindTexImage;
58     ReleaseTexImageT ReleaseTexImage;
59     GetFBConfigsT GetFBConfigs;
60     GetFBConfigAttribT GetFBConfigAttrib;
61
62     Window overlay;
63
64     GLXContext ctx;
65     struct ObCompositeFBConfig {
66         GLXFBConfig fbc; /* the fbconfig */
67         gint tf;         /* texture format */
68     } PixmapConfig[MAX_DEPTH + 1]; // need a [32]
69
70     gboolean need_redraw;
71     const Rect *screendims;
72 };
73 #endif
74
75 void composite_startup(gboolean reconfig);
76 void composite_shutdown(gboolean reconfig);
77
78 #endif