From: Brian Date: Fri, 29 Jun 2007 18:59:58 +0000 (-0600) Subject: added texture types and mapping types X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48076dc784c910dfee1ebaa6970375495209b839;p=mesa.git added texture types and mapping types --- diff --git a/src/mesa/pipe/p_defines.h b/src/mesa/pipe/p_defines.h index a0c4d72a3c2..7212040b362 100644 --- a/src/mesa/pipe/p_defines.h +++ b/src/mesa/pipe/p_defines.h @@ -134,10 +134,24 @@ #define PIPE_FORMAT_U_A8 4 /**< ubyte alpha */ #define PIPE_FORMAT_U_I8 5 /**< ubyte intensity */ #define PIPE_FORMAT_U_L8_A8 6 /**< ubyte luminance, alpha */ - #define PIPE_FORMAT_U_Z16 7 /**< ushort Z/depth */ #define PIPE_FORMAT_F_Z32 8 /**< float Z/depth */ #define PIPE_FORMAT_YCBCR 9 #define PIPE_FORMAT_YCBCR_REV 10 +/** + * Texture typess + */ +#define PIPE_TEXTURE_1D 0 +#define PIPE_TEXTURE_2D 1 +#define PIPE_TEXTURE_3D 2 +#define PIPE_TEXTURE_CUBE 3 + +/** + * Buffer mapping access modes + */ +#define PIPE_MAP_READ 1 +#define PIPE_MAP_WRITE 2 +#define PIPE_MAP_READ_WRITE 3 + #endif