File: theme.h

package info (click to toggle)
neverball 1.6.0%2Bgit20180603-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 152,384 kB
  • sloc: ansic: 27,402; makefile: 454; cpp: 208; xml: 177; sh: 161
file content (20 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef THEME_H
#define THEME_H

#include "base_config.h"
#include "glext.h"

#define THEME_IMAGES_MAX 4

struct theme
{
    GLuint tex[THEME_IMAGES_MAX];

    GLfloat t[4];
    GLfloat s[4];
};

int  theme_load(struct theme *, const char *name);
void theme_free(struct theme *);

#endif