mirror of
https://github.com/brl/mutter.git
synced 2024-11-27 10:30:47 -05:00
2f4a68c8c3
The order and way include macros were structured was chaotic, with no real common thread between files. Try to tidy up the mess with some common scheme, to make things look less messy.
15 lines
546 B
C
15 lines
546 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef META_BACKGROUND_PRIVATE_H
|
|
#define META_BACKGROUND_PRIVATE_H
|
|
|
|
#include "cogl/cogl.h"
|
|
#include "meta/meta-background.h"
|
|
|
|
CoglTexture *meta_background_get_texture (MetaBackground *self,
|
|
int monitor_index,
|
|
cairo_rectangle_int_t *texture_area,
|
|
CoglPipelineWrapMode *wrap_mode);
|
|
|
|
#endif /* META_BACKGROUND_PRIVATE_H */
|