mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Move example -> examples
And the compositor example into its own directory
This commit is contained in:
parent
18e6ddc1c5
commit
28736c5787
12 changed files with 2 additions and 5 deletions
13
examples/cat.h
Normal file
13
examples/cat.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef _CAT_H
|
||||
#define _CAT_H
|
||||
|
||||
struct gimp_texture {
|
||||
unsigned int width;
|
||||
unsigned int height;
|
||||
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
|
||||
unsigned char pixel_data[128 * 128 * 3 + 1];
|
||||
};
|
||||
|
||||
extern const struct gimp_texture cat_tex;
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue