From: Younes Manton Date: Tue, 2 Dec 2008 03:08:59 +0000 (-0500) Subject: gallium: Make room for custom PIPE_TEXTURE_USAGE_* flags. X-Git-Tag: 062012170305~17580^2~496^2~224 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c22c0452526aaae13a2e618ec6e46327609d9c2;p=profile%2Fivi%2Fmesa.git gallium: Make room for custom PIPE_TEXTURE_USAGE_* flags. --- diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index dc8a92d..9a016d3 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -171,6 +171,8 @@ enum pipe_texture_target { #define PIPE_TEXTURE_USAGE_PRIMARY 0x4 /* ie a frontbuffer */ #define PIPE_TEXTURE_USAGE_DEPTH_STENCIL 0x8 #define PIPE_TEXTURE_USAGE_SAMPLER 0x10 +/** Pipe driver custom usage flags should be greater or equal to this value */ +#define PIPE_TEXTURE_USAGE_CUSTOM (1 << 16) #define PIPE_TEXTURE_GEOM_NON_SQUARE 0x1 #define PIPE_TEXTURE_GEOM_NON_POWER_OF_TWO 0x2