X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=draw.h;h=2a5681a987bad7ea5c7fb495273a34b5641161b8;hb=7b54444c08e4d206acaf8e302be47e6dfe1f9b7d;hp=2019e86c7cbdbc3ca2c13cbba4fc16dc55cd0d0b;hpb=6a03c89272a7193c133db45d45e22a223342a861;p=xonotic%2Fdarkplaces.git diff --git a/draw.h b/draw.h index 2019e86c..2a5681a9 100644 --- a/draw.h +++ b/draw.h @@ -39,6 +39,8 @@ typedef struct cachepic_s rtexture_t *tex; // used for hash lookups struct cachepic_s *chain; + // flags - CACHEPICFLAG_NEWPIC for example + unsigned int flags; // has alpha? qboolean hasalpha; // name of pic @@ -51,7 +53,8 @@ typedef enum cachepicflags_e CACHEPICFLAG_NOTPERSISTENT = 1, CACHEPICFLAG_QUIET = 2, CACHEPICFLAG_NOCOMPRESSION = 4, - CACHEPICFLAG_NOCLAMP = 8 + CACHEPICFLAG_NOCLAMP = 8, + CACHEPICFLAG_NEWPIC = 16 // disables matching texflags check, because a pic created with Draw_NewPic should not be subject to that } cachepicflags_t;