]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - r_textures.h
be6dbe0565087ad678815185ec9efa17f601cabf
[xonotic/darkplaces.git] / r_textures.h
1
2 #ifndef R_TEXTURES_H
3 #define R_TEXTURES_H
4
5 // transparent
6 #define TEXF_ALPHA 0x00000001
7 // mipmapped
8 #define TEXF_MIPMAP 0x00000002
9 // upload if r_textureprecache >= 1, otherwise defer loading until it is used
10 #define TEXF_PRECACHE 0x00000004
11 // upload immediately, never defer (ignore r_textureprecache)
12 #define TEXF_ALWAYSPRECACHE 0x00000008
13 // indicates texture coordinates should be clamped rather than wrapping
14 #define TEXF_CLAMP 0x00000020
15 // indicates texture should be uploaded using GL_NEAREST or GL_NEAREST_MIPMAP_NEAREST mode
16 #define TEXF_FORCENEAREST 0x00000040
17 // indicates texture should be uploaded using GL_LINEAR or GL_LINEAR_MIPMAP_NEAREST or GL_LINEAR_MIPMAP_LINEAR mode
18 #define TEXF_FORCELINEAR 0x00000080
19 // indicates texture should be affected by gl_picmip and gl_max_size cvar
20 #define TEXF_PICMIP 0x00000100
21 // used for checking if textures mismatch
22 #define TEXF_IMPORTANTBITS (TEXF_ALPHA | TEXF_MIPMAP | TEXF_CLAMP | TEXF_FORCENEAREST | TEXF_FORCELINEAR | TEXF_PICMIP)
23
24 // 8bit paletted
25 #define TEXTYPE_PALETTE 1
26 // 24bit RGB
27 #define TEXTYPE_RGB 2
28 // 32bit RGBA
29 #define TEXTYPE_RGBA 3
30 // 16bit DSDT
31 #define TEXTYPE_DSDT 4
32
33 // contents of this structure are mostly private to gl_textures.c
34 typedef struct rtexture_s
35 {
36         // this is exposed (rather than private) for speed reasons only
37         int texnum;
38 }
39 rtexture_t;
40
41 // contents of this structure are private to gl_textures.c
42 typedef struct rtexturepool_s
43 {
44         int useless;
45 }
46 rtexturepool_t;
47
48 // allocate a texture pool, to be used with R_LoadTexture
49 rtexturepool_t *R_AllocTexturePool(void);
50 // free a texture pool (textures can not be freed individually)
51 void R_FreeTexturePool(rtexturepool_t **rtexturepool);
52
53 // add a texture to a pool and optionally precache (upload) it
54 // (note: data == NULL is perfectly acceptable)
55 // (note: palette must not be NULL if using TEXTYPE_PALETTE)
56 rtexture_t *R_LoadTexture1D(rtexturepool_t *rtexturepool, const char *identifier, int width, const unsigned char *data, int textype, int flags, const unsigned int *palette);
57 rtexture_t *R_LoadTexture2D(rtexturepool_t *rtexturepool, const char *identifier, int width, int height, const unsigned char *data, int textype, int flags, const unsigned int *palette);
58 rtexture_t *R_LoadTexture3D(rtexturepool_t *rtexturepool, const char *identifier, int width, int height, int depth, const unsigned char *data, int textype, int flags, const unsigned int *palette);
59 rtexture_t *R_LoadTextureCubeMap(rtexturepool_t *rtexturepool, const char *identifier, int width, const unsigned char *data, int textype, int flags, const unsigned int *palette);
60
61 // free a texture
62 void R_FreeTexture(rtexture_t *rt);
63
64 // update a portion of the image data of a texture, used by lightmap updates
65 // and procedural textures such as video playback.
66 void R_UpdateTexture(rtexture_t *rt, unsigned char *data, int x, int y, int width, int height);
67
68 // returns the renderer dependent texture slot number (call this before each
69 // use, as a texture might not have been precached)
70 #define R_GetTexture(rt) ((rt) ? ((rt)->texnum >= 0 ? (rt)->texnum : R_RealGetTexture(rt)) : r_texture_white->texnum)
71 int R_RealGetTexture (rtexture_t *rt);
72
73 // returns true if the texture is transparent (useful for rendering code)
74 int R_TextureHasAlpha(rtexture_t *rt);
75
76 // returns width of texture, as was specified when it was uploaded
77 int R_TextureWidth(rtexture_t *rt);
78
79 // returns height of texture, as was specified when it was uploaded
80 int R_TextureHeight(rtexture_t *rt);
81
82 // frees processing buffers each frame, and may someday animate procedural textures
83 void R_Textures_Frame(void);
84
85 #endif
86