/usr/include/compiz/composite/composite.h is in compiz-dev 1:0.9.7.6-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | /*
* Copyright © 2008 Dennis Kasprzyk
* Copyright © 2007 Novell, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without
* fee, provided that the above copyright notice appear in all copies
* and that both that copyright notice and this permission notice
* appear in supporting documentation, and that the name of
* Dennis Kasprzyk not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior permission.
* Dennis Kasprzyk makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* DENNIS KASPRZYK DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
* NO EVENT SHALL DENNIS KASPRZYK BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Authors: Dennis Kasprzyk <onestone@compiz-fusion.org>
* David Reveman <davidr@novell.com>
*/
#ifndef _COMPIZ_COMPOSITE_H
#define _COMPIZ_COMPOSITE_H
#include <X11/extensions/Xcomposite.h>
#define COMPIZ_COMPOSITE_ABI 4
#include "core/pluginclasshandler.h"
#include "core/timer.h"
#include "core/output.h"
#include "core/screen.h"
#include "core/wrapsystem.h"
#define COMPOSITE_SCREEN_DAMAGE_PENDING_MASK (1 << 0)
#define COMPOSITE_SCREEN_DAMAGE_REGION_MASK (1 << 1)
#define COMPOSITE_SCREEN_DAMAGE_ALL_MASK (1 << 2)
#define OPAQUE 0xffff
#define COLOR 0xffff
#define BRIGHT 0xffff
/**
* Used to indicate only part of the screen is being redrawn
*/
#define PAINT_SCREEN_REGION_MASK (1 << 0)
/**
* Used to indicate that the whole screen is being redrawn
*/
#define PAINT_SCREEN_FULL_MASK (1 << 1)
/**
* Used to indicate that every window on this screen will be
* transformed, so non-painted areas should be
* double-buffered
*/
#define PAINT_SCREEN_TRANSFORMED_MASK (1 << 2)
/**
* Used to indicate that some windows on this screen will
* be drawn transformed
*/
#define PAINT_SCREEN_WITH_TRANSFORMED_WINDOWS_MASK (1 << 3)
/**
* Used to indicate that nothing is being drawn on this pass
*/
#define PAINT_SCREEN_CLEAR_MASK (1 << 4)
/**
* Used to indicate that occlusion detection is not in use
* on this pass
*/
#define PAINT_SCREEN_NO_OCCLUSION_DETECTION_MASK (1 << 5)
/**
* Used to indicate that no background will be drawn on this
* pass
*/
#define PAINT_SCREEN_NO_BACKGROUND_MASK (1 << 6)
typedef enum
{
CompositeFPSLimiterModeDisabled = 0,
CompositeFPSLimiterModeDefault,
CompositeFPSLimiterModeVSyncLike
} CompositeFPSLimiterMode;
class PrivateCompositeScreen;
class PrivateCompositeWindow;
class CompositeScreen;
class CompositeWindow;
namespace compiz
{
namespace composite
{
class PaintHandler {
public:
virtual ~PaintHandler () {};
virtual void paintOutputs (CompOutput::ptrList &outputs,
unsigned int mask,
const CompRegion ®ion) = 0;
virtual bool hasVSync () { return false; };
virtual void prepareDrawing () {};
virtual bool compositingActive () { return false; };
};
}
}
/**
* Wrapable function interface for CompositeScreen
*/
class CompositeScreenInterface :
public WrapableInterface<CompositeScreen, CompositeScreenInterface>
{
public:
/**
* Hook which activates just before the screen is painted,
* plugins should use this to calculate animation parameters
*
* @param msSinceLastPaint Describes how many milliseconds have passed
* since the last screen repaint
*/
virtual void preparePaint (int);
/**
* Hook which activates right after the screen is painted,
* plugins should use this to run post-paint cleanup, damage handling
* and setting next paint variables
*
*/
virtual void donePaint ();
/**
* Hookable function which dispatches painting of outputs
* to rendering plugins such as OpenGL. Hook this function
* to change which outputs are painted, or to paint them
* manually if you are rendering
*/
virtual void paint (CompOutput::ptrList &outputs, unsigned int);
/**
* Hookable function which gets a list of windows that need to be
* evaluated for repainting
*/
virtual const CompWindowList & getWindowPaintList ();
/**
* Hookable function to register a new paint handler, overload
* and insert your own paint handler if you want to prevent
* another one from being loaded
*/
virtual bool registerPaintHandler (compiz::composite::PaintHandler *pHnd);
/**
* Hookable function to notify unregistration of a paint handler
*
*/
virtual void unregisterPaintHandler ();
/**
* Hookable function to damage regions directly
*/
virtual void damageRegion (const CompRegion &r);
};
class CompositeScreen :
public WrapableHandler<CompositeScreenInterface, 7>,
public PluginClassHandler<CompositeScreen, CompScreen, COMPIZ_COMPOSITE_ABI>,
public CompOption::Class
{
public:
CompositeScreen (CompScreen *s);
~CompositeScreen ();
CompOption::Vector & getOptions ();
bool setOption (const CompString &name, CompOption::Value &value);
bool compositingActive ();
/**
* Returns the value of an XDamage Extension event signature
*/
int damageEvent ();
/**
* Causes the entire screen to be redrawn on the next
* event loop
*/
void damageScreen ();
void damagePending ();
unsigned int damageMask ();
const CompRegion & currentDamage () const;
void showOutputWindow ();
void hideOutputWindow ();
void updateOutputWindow ();
Window overlay ();
Window output ();
int & overlayWindowCount ();
void setWindowPaintOffset (int x, int y);
CompPoint windowPaintOffset ();
/**
* Limits the number of redraws per second
*/
void setFPSLimiterMode (CompositeFPSLimiterMode newMode);
CompositeFPSLimiterMode FPSLimiterMode ();
int redrawTime ();
int optimalRedrawTime ();
bool handlePaintTimeout ();
WRAPABLE_HND (0, CompositeScreenInterface, void, preparePaint, int);
WRAPABLE_HND (1, CompositeScreenInterface, void, donePaint);
WRAPABLE_HND (2, CompositeScreenInterface, void, paint,
CompOutput::ptrList &outputs, unsigned int);
WRAPABLE_HND (3, CompositeScreenInterface, const CompWindowList &,
getWindowPaintList);
WRAPABLE_HND (4, CompositeScreenInterface, bool, registerPaintHandler, compiz::composite::PaintHandler *);
WRAPABLE_HND (5, CompositeScreenInterface, void, unregisterPaintHandler);
/**
* Adds a specific region to be redrawn on the next
* event loop
*/
WRAPABLE_HND (6, CompositeScreenInterface, void, damageRegion, const CompRegion &);
friend class PrivateCompositeDisplay;
private:
PrivateCompositeScreen *priv;
public:
static bool toggleSlowAnimations (CompAction *action,
CompAction::State state,
CompOption::Vector &options);
};
/*
window paint flags
bit 1-16 are used for read-only flags and they provide
information that describe the screen rendering pass
currently in process.
bit 17-32 are writable flags and they provide information
that is used to optimize rendering.
*/
/**
* this flag is present when window is being painted
* on a transformed screen.
*/
#define PAINT_WINDOW_ON_TRANSFORMED_SCREEN_MASK (1 << 0)
/**
* this flag is present when window is being tested
* for occlusion of other windows.
*/
#define PAINT_WINDOW_OCCLUSION_DETECTION_MASK (1 << 1)
/**
* this flag indicates that the window ist painted with
* an offset
*/
#define PAINT_WINDOW_WITH_OFFSET_MASK (1 << 2)
/**
* flag indicate that window is translucent.
*/
#define PAINT_WINDOW_TRANSLUCENT_MASK (1 << 16)
/**
* flag indicate that window is transformed.
*/
#define PAINT_WINDOW_TRANSFORMED_MASK (1 << 17)
/**
* flag indicate that core PaintWindow function should
* not draw this window.
*/
#define PAINT_WINDOW_NO_CORE_INSTANCE_MASK (1 << 18)
/**
* flag indicate that blending is required.
*/
#define PAINT_WINDOW_BLEND_MASK (1 << 19)
class CompositeWindowInterface :
public WrapableInterface<CompositeWindow, CompositeWindowInterface>
{
public:
/**
* Hookable function to determine which parts of the
* screen for this window to redraw on the next pass
*
* @param initial Indicates if this is the first time
* this window is being redrawn
* @param rect Reference to a rect which describes which
* parts of the screen need to be redrawn on next pass
*/
virtual bool damageRect (bool initial, const CompRect &rect);
};
class CompositeWindow :
public WrapableHandler<CompositeWindowInterface, 1>,
public PluginClassHandler<CompositeWindow, CompWindow, COMPIZ_COMPOSITE_ABI>
{
public:
CompositeWindow (CompWindow *w);
~CompositeWindow ();
/**
* Binds the window contents of this window to some offscreen pixmap
*/
bool bind ();
/**
* Releases the pixmap data for this window with XFreePixmap.
*/
void release ();
/**
* Returns the window pixmap
*/
Pixmap pixmap ();
/**
* Pixmap size at the time the pixmap was last bound
*/
const CompSize & size ();
/**
* Forces this window to be composited so that the X Server
* stops drawing it and all output is redirected to an
* offscreen pixmap
*/
void redirect ();
/**
* Stops this window from being composited, so that the X Server
* draws the window on-screen normally and output is not redirected
* to an offscreen pixmap
*/
void unredirect ();
/**
* Returns true if a window is redirected
*/
bool redirected ();
bool overlayWindow ();
void damageTransformedRect (float xScale,
float yScale,
float xTranslate,
float yTranslate,
const CompRect &rect);
void damageOutputExtents ();
/**
* Causes an area of the window to be redrawn on the
* next event loop
*/
void addDamageRect (const CompRect &);
/**
* Causes the window to be redrawn on the next
* event loop
*/
void addDamage (bool force = false);
/**
* Returns true if this window will be redrawn or
* partially redrawn on the next event loop
*/
bool damaged ();
/**
* Sets screen redraw hints for "damaged" areas
* as stated by XDamageNotifyEvent
*
* @param de An XDamageNotifyEvent to be used to
* calculate areas to redraw on the next event loop
*/
void processDamage (XDamageNotifyEvent *de);
void updateOpacity ();
void updateBrightness ();
void updateSaturation ();
/**
* Returns the window opacity
*/
unsigned short opacity ();
/**
* Returns the window brightness
*/
unsigned short brightness ();
/**
* Returns the window saturation
*/
unsigned short saturation ();
WRAPABLE_HND (0, CompositeWindowInterface, bool, damageRect,
bool, const CompRect &);
friend class PrivateCompositeWindow;
friend class CompositeScreen;
private:
PrivateCompositeWindow *priv;
};
#endif
|