mirror of
https://github.com/brl/mutter.git
synced 2024-11-11 08:46:26 -05:00
26 lines
564 B
C
26 lines
564 B
C
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
||
|
|
||
|
#ifndef META_COMPOSITOR_PRIVATE_H
|
||
|
#define META_COMPOSITOR_PRIVATE_H
|
||
|
|
||
|
#include "compositor.h"
|
||
|
#include "display.h"
|
||
|
#include <clutter/clutter.h>
|
||
|
|
||
|
struct _MetaCompositor
|
||
|
{
|
||
|
MetaDisplay *display;
|
||
|
|
||
|
Atom atom_x_root_pixmap;
|
||
|
Atom atom_x_set_root;
|
||
|
Atom atom_net_wm_window_opacity;
|
||
|
|
||
|
ClutterActor *shadow_src;
|
||
|
|
||
|
gboolean show_redraw : 1;
|
||
|
gboolean debug : 1;
|
||
|
gboolean no_mipmaps : 1;
|
||
|
};
|
||
|
|
||
|
#endif /* META_COMPOSITOR_PRIVATE_H */
|