p_state.h revision 94822c6d83b7811db2a02bb4416df02ae225ba47
18e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell/**************************************************************************
28e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell *
38e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
48e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * All Rights Reserved.
58e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell *
68e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * Permission is hereby granted, free of charge, to any person obtaining a
78e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * copy of this software and associated documentation files (the
88e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * "Software"), to deal in the Software without restriction, including
98e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * without limitation the rights to use, copy, modify, merge, publish,
108e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * distribute, sub license, and/or sell copies of the Software, and to
118e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * permit persons to whom the Software is furnished to do so, subject to
128e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * the following conditions:
138e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell *
148e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * The above copyright notice and this permission notice (including the
158e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * next paragraph) shall be included in all copies or substantial portions
168e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * of the Software.
178e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell *
188e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
198e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
208e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
218e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
228e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
238e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
248e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
258e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell *
268e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell **************************************************************************/
278e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
28f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian
29f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian/**
30984a7c4e9c42cf8ddfcff5b880b522a6dd58bce2José Fonseca * @file
31984a7c4e9c42cf8ddfcff5b880b522a6dd58bce2José Fonseca *
32f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian * Abstract graphics pipe state objects.
33f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian *
34f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian * Basic notes:
35f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian *   1. Want compact representations, so we use bitfields.
36f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian *   2. Put bitfields before other (GLfloat) fields.
37f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian */
38f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian
39f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian
40943964a1e5bad86bdceb0a06d60fb3b302ebce6aKeith Whitwell#ifndef PIPE_STATE_H
41943964a1e5bad86bdceb0a06d60fb3b302ebce6aKeith Whitwell#define PIPE_STATE_H
428e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
4340a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell#include "p_compiler.h"
441c5f27a18b775b3784fcd265d60e0affa0b31581Michel Dänzer#include "p_defines.h"
4554fc80ab31f89520d3119196bfa9c6332b35fe2fBrian#include "p_format.h"
4613682d959ddacde1ce65843aa8c5b43dc9017b32Brian
47e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca
48e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca#ifdef __cplusplus
49e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonsecaextern "C" {
50e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca#endif
51e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca
52e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca
5313682d959ddacde1ce65843aa8c5b43dc9017b32Brian/**
5413682d959ddacde1ce65843aa8c5b43dc9017b32Brian * Implementation limits
5513682d959ddacde1ce65843aa8c5b43dc9017b32Brian */
56da8934034b33adef5dc41395cfde4bdd26ba207cBrian#define PIPE_MAX_ATTRIBS          32
57da8934034b33adef5dc41395cfde4bdd26ba207cBrian#define PIPE_MAX_CLIP_PLANES       6
58da8934034b33adef5dc41395cfde4bdd26ba207cBrian#define PIPE_MAX_COLOR_BUFS        8
597c5f255201f42303188137f56ea8acc030444f0eMichal Krol#define PIPE_MAX_CONSTANT_BUFFERS 32
60da8934034b33adef5dc41395cfde4bdd26ba207cBrian#define PIPE_MAX_SAMPLERS         16
6115d1b406afd733b5f46b16dc933e29c218cdca39Michal Krol#define PIPE_MAX_VERTEX_SAMPLERS  16
6253bd9796a1395e4acde884ff55cb7ee18586595aZack Rusin#define PIPE_MAX_GEOMETRY_SAMPLERS  16
63b273928140479f089d45cd2dbc30708306b97ee0Brian Paul#define PIPE_MAX_SHADER_INPUTS    32
64b273928140479f089d45cd2dbc30708306b97ee0Brian Paul#define PIPE_MAX_SHADER_OUTPUTS   32
65bdbe77f9c6f06cfaa155f27c2ade3c523d7fbea7Zack Rusin#define PIPE_MAX_SHADER_RESOURCES 32
66da8934034b33adef5dc41395cfde4bdd26ba207cBrian#define PIPE_MAX_TEXTURE_LEVELS   16
67a45b7f47ee0e38b288cc8fc4f6a1c013e8c227bcZack Rusin#define PIPE_MAX_SO_BUFFERS        4
6813682d959ddacde1ce65843aa8c5b43dc9017b32Brian
6913682d959ddacde1ce65843aa8c5b43dc9017b32Brian
7038f6f23fcf37247fd709d1c612d08bfa9b124e69José Fonsecastruct pipe_reference
7138f6f23fcf37247fd709d1c612d08bfa9b124e69José Fonseca{
7238f6f23fcf37247fd709d1c612d08bfa9b124e69José Fonseca   int32_t count; /* atomic */
7338f6f23fcf37247fd709d1c612d08bfa9b124e69José Fonseca};
7438f6f23fcf37247fd709d1c612d08bfa9b124e69José Fonseca
7538f6f23fcf37247fd709d1c612d08bfa9b124e69José Fonseca
76bec2230514ad2e8e52625ecb339fcadfabffd4dfBrian
77f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian/**
78294401814d1d89cc731de1c22c25333aa5d59374Zack Rusin * Primitive (point/line/tri) rasterization info
79f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian */
80294401814d1d89cc731de1c22c25333aa5d59374Zack Rusinstruct pipe_rasterizer_state
81f79c225d9e5adee6287a9bba35f014c3fe00d3f9Brian{
8240a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned flatshade:1;
8340a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned light_twoside:1;
8447e3896dfd89a26abbe4ca2469c2480f3982b204Luca Barbieri   unsigned clamp_vertex_color:1;
8547e3896dfd89a26abbe4ca2469c2480f3982b204Luca Barbieri   unsigned clamp_fragment_color:1;
860bd1cbcd0d28dbadfb0c3e1f8b048a18b56bc72cKeith Whitwell   unsigned front_ccw:1;
870bd1cbcd0d28dbadfb0c3e1f8b048a18b56bc72cKeith Whitwell   unsigned cull_face:2;      /**< PIPE_FACE_x */
880bd1cbcd0d28dbadfb0c3e1f8b048a18b56bc72cKeith Whitwell   unsigned fill_front:2;     /**< PIPE_POLYGON_MODE_x */
890bd1cbcd0d28dbadfb0c3e1f8b048a18b56bc72cKeith Whitwell   unsigned fill_back:2;      /**< PIPE_POLYGON_MODE_x */
900bd1cbcd0d28dbadfb0c3e1f8b048a18b56bc72cKeith Whitwell   unsigned offset_point:1;
910bd1cbcd0d28dbadfb0c3e1f8b048a18b56bc72cKeith Whitwell   unsigned offset_line:1;
920bd1cbcd0d28dbadfb0c3e1f8b048a18b56bc72cKeith Whitwell   unsigned offset_tri:1;
9340a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned scissor:1;
9440a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned poly_smooth:1;
9540a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned poly_stipple_enable:1;
9640a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned point_smooth:1;
974a4daa75a85db22cd37ebd533ebbccb427e07077Roland Scheidegger   unsigned sprite_coord_mode:1;     /**< PIPE_SPRITE_COORD_ */
9868f93ea3eb83cfad014b8ec93cec3564c1aa9833Roland Scheidegger   unsigned point_quad_rasterization:1; /** points rasterized as quads or points */
99beefc6011bce9e99cb46430186de1c13f027cb05Brian   unsigned point_size_per_vertex:1; /**< size computed in vertex shader */
10040a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned multisample:1;         /* XXX maybe more ms state in future */
10140a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned line_smooth:1;
10240a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned line_stipple_enable:1;
10399691f38c278f1d4aeb0617b149109644e3571fbKeith Whitwell   unsigned line_last_pixel:1;
104683e7091a953204c9aee1410ac44be3b69bae9fcKeith Whitwell
10502b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák   /**
106a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * Use the first vertex of a primitive as the provoking vertex for
107a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * flat shading.
108a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    */
10902b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák   unsigned flatshade_first:1;
110a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell
11102b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák   /**
112a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * When true, triangle rasterization uses (0.5, 0.5) pixel centers
113a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * for determining pixel ownership.
114a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    *
115a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * When false, triangle rasterization uses (0,0) pixel centers for
116a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * determining pixel ownership.
117a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    *
118a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * Triangle rasterization always uses a 'top,left' rule for pixel
119a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * ownership, this just alters which point we consider the pixel
120a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    * center for that test.
121a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell    */
122a1fa770c01d913658900de1c267fb4c41bc6300dKeith Whitwell   unsigned gl_rasterization_rules:1;
12340a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell
12402b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák   unsigned line_stipple_factor:8;  /**< [1..256] actually */
12502b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák   unsigned line_stipple_pattern:16;
12602b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák
12702b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák   unsigned sprite_coord_enable:PIPE_MAX_SHADER_OUTPUTS;
12802b352e2ace126e880d7df6a8c669e181b76e05fMarek Olšák
12940a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float line_width;
13040a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float point_size;           /**< used when no per-vertex size */
13140a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float offset_units;
13240a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float offset_scale;
1338e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell};
1348e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
13563a51aee86f76ae54fb1ce572d584fb0f01aaec5Brian
136d4d2e36a429fd015316c484fc40be7e6d2c69946Brianstruct pipe_poly_stipple
137d4d2e36a429fd015316c484fc40be7e6d2c69946Brian{
13840a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned stipple[32];
1398e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell};
1408e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
1418e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
142d4d2e36a429fd015316c484fc40be7e6d2c69946Brianstruct pipe_viewport_state
143d4d2e36a429fd015316c484fc40be7e6d2c69946Brian{
14440a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float scale[4];
14540a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float translate[4];
1468e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell};
1478e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
14850eb29ed9492a34db4ba53f1f28a2868b808955aBrian
149d4d2e36a429fd015316c484fc40be7e6d2c69946Brianstruct pipe_scissor_state
150d4d2e36a429fd015316c484fc40be7e6d2c69946Brian{
15140a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned minx:16;
15240a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned miny:16;
15340a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned maxx:16;
15440a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned maxy:16;
1558e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell};
1568e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
15750eb29ed9492a34db4ba53f1f28a2868b808955aBrian
158d4d2e36a429fd015316c484fc40be7e6d2c69946Brianstruct pipe_clip_state
159d4d2e36a429fd015316c484fc40be7e6d2c69946Brian{
16040a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float ucp[PIPE_MAX_CLIP_PLANES][4];
16140a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned nr;
162f47c9b088056e25a0a007b16045631df70001c8fMarek Olšák   unsigned depth_clamp:1;
1638e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell};
1648e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
1654824c342c864e870251a7d343c95e51274e50d23Keith Whitwell
166d4d2e36a429fd015316c484fc40be7e6d2c69946Brianstruct pipe_shader_state
167d4d2e36a429fd015316c484fc40be7e6d2c69946Brian{
16843d7c1fe9d2544b851afa2f1c1e245a63860e670Brian   const struct tgsi_token *tokens;
16943d7c1fe9d2544b851afa2f1c1e245a63860e670Brian};
17043d7c1fe9d2544b851afa2f1c1e245a63860e670Brian
17150eb29ed9492a34db4ba53f1f28a2868b808955aBrian
172b9a3952f8f04a25818aba69e235e3d250c064cb8Brian Paulstruct pipe_depth_state
173b9a3952f8f04a25818aba69e235e3d250c064cb8Brian Paul{
174ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned enabled:1;         /**< depth test enabled? */
175ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned writemask:1;       /**< allow depth buffer writes? */
176ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned func:3;            /**< depth test func (PIPE_FUNC_x) */
177ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca};
178ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca
179ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca
180b9a3952f8f04a25818aba69e235e3d250c064cb8Brian Paulstruct pipe_stencil_state
181b9a3952f8f04a25818aba69e235e3d250c064cb8Brian Paul{
182ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned enabled:1;  /**< stencil[0]: stencil enabled, stencil[1]: two-side enabled */
183ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned func:3;     /**< PIPE_FUNC_x */
184ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned fail_op:3;  /**< PIPE_STENCIL_OP_x */
185ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned zpass_op:3; /**< PIPE_STENCIL_OP_x */
186ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned zfail_op:3; /**< PIPE_STENCIL_OP_x */
187c59446a4930ec93e55f7cd3d1fffe46585cbe506Roland Scheidegger   unsigned valuemask:8;
188c59446a4930ec93e55f7cd3d1fffe46585cbe506Roland Scheidegger   unsigned writemask:8;
189ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca};
190ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca
191ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca
192b9a3952f8f04a25818aba69e235e3d250c064cb8Brian Paulstruct pipe_alpha_state
193b9a3952f8f04a25818aba69e235e3d250c064cb8Brian Paul{
194ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned enabled:1;
195ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   unsigned func:3;     /**< PIPE_FUNC_x */
196d6888e811d24eaa7e8d9093be606394f00435c05Zack Rusin   float ref_value;     /**< reference value */
197ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca};
198ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca
199ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca
200bfe79babf99e6b9435195178d1ea64687c60d161Keith Whitwellstruct pipe_depth_stencil_alpha_state
2018f2888758129b0a40d71fa4ce10d606b4bcf7631Brian{
202ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   struct pipe_depth_state depth;
203ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   struct pipe_stencil_state stencil[2]; /**< [0] = front, [1] = back */
204ca826d79a64d46e7f3bffff22640f148c044cdadJosé Fonseca   struct pipe_alpha_state alpha;
205493f7b5f3ae2eb64eaa65e24e79a7a071c359b81Brian};
2068f2888758129b0a40d71fa4ce10d606b4bcf7631Brian
207bfe79babf99e6b9435195178d1ea64687c60d161Keith Whitwell
208bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheideggerstruct pipe_rt_blend_state
209d4d2e36a429fd015316c484fc40be7e6d2c69946Brian{
21040a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned blend_enable:1;
2118e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
21240a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned rgb_func:3;          /**< PIPE_BLEND_x */
21340a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned rgb_src_factor:5;    /**< PIPE_BLENDFACTOR_x */
21440a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned rgb_dst_factor:5;    /**< PIPE_BLENDFACTOR_x */
2158e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
21640a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned alpha_func:3;        /**< PIPE_BLEND_x */
21740a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned alpha_src_factor:5;  /**< PIPE_BLENDFACTOR_x */
21840a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned alpha_dst_factor:5;  /**< PIPE_BLENDFACTOR_x */
2198e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
220bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheidegger   unsigned colormask:4;         /**< bitmask of PIPE_MASK_R/G/B/A */
221bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheidegger};
222bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheidegger
223bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheideggerstruct pipe_blend_state
224bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheidegger{
225bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheidegger   unsigned independent_blend_enable:1;
22640a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned logicop_enable:1;
22740a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned logicop_func:4;      /**< PIPE_LOGICOP_x */
22840a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned dither:1;
229aac2cccccfd701ae8d7ce0813c28c64498d4a076Roland Scheidegger   unsigned alpha_to_coverage:1;
230aac2cccccfd701ae8d7ce0813c28c64498d4a076Roland Scheidegger   unsigned alpha_to_one:1;
231bef610f693266c338b99511b4d1eea5d5b97644eRoland Scheidegger   struct pipe_rt_blend_state rt[PIPE_MAX_COLOR_BUFS];
2328e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell};
2338e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
23450eb29ed9492a34db4ba53f1f28a2868b808955aBrian
235d4d2e36a429fd015316c484fc40be7e6d2c69946Brianstruct pipe_blend_color
236d4d2e36a429fd015316c484fc40be7e6d2c69946Brian{
23740a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   float color[4];
2388e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell};
2398e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell
2401a859ecf4a4728cb321b1f68d51491cd285a3c03Roland Scheideggerstruct pipe_stencil_ref
2411a859ecf4a4728cb321b1f68d51491cd285a3c03Roland Scheidegger{
2421a859ecf4a4728cb321b1f68d51491cd285a3c03Roland Scheidegger   ubyte ref_value[2];
2431a859ecf4a4728cb321b1f68d51491cd285a3c03Roland Scheidegger};
24450eb29ed9492a34db4ba53f1f28a2868b808955aBrian
2458f6b6eed35832733674372dea7bd5ce69a965c4eBrianstruct pipe_framebuffer_state
2468f6b6eed35832733674372dea7bd5ce69a965c4eBrian{
24780567f9c9f84d9df1cdb2d91a3c0814888cc5d08Brian   unsigned width, height;
24880567f9c9f84d9df1cdb2d91a3c0814888cc5d08Brian
2494243ca1144eef5783ed080cce9db1a8dda2c6360Brian Paul   /** multiple color buffers for multiple render targets */
2502299f21f8da816fc4588492965e7dac422da1a96Zack Rusin   unsigned nr_cbufs;
251f0f9a22609ccf2b8edc5760480f1a7a78cb504d7Brian   struct pipe_surface *cbufs[PIPE_MAX_COLOR_BUFS];
252f0f9a22609ccf2b8edc5760480f1a7a78cb504d7Brian
2538de2331e432e2ea6f978acb6c80666da99c6c4a1Brian   struct pipe_surface *zsbuf;      /**< Z/stencil buffer */
2548f6b6eed35832733674372dea7bd5ce69a965c4eBrian};
2558f6b6eed35832733674372dea7bd5ce69a965c4eBrian
2568f6b6eed35832733674372dea7bd5ce69a965c4eBrian
25702a47549ad182d28d330063d4f452108e3a4b452Brian/**
25802a47549ad182d28d330063d4f452108e3a4b452Brian * Texture sampler state.
25902a47549ad182d28d330063d4f452108e3a4b452Brian */
260943964a1e5bad86bdceb0a06d60fb3b302ebce6aKeith Whitwellstruct pipe_sampler_state
26102a47549ad182d28d330063d4f452108e3a4b452Brian{
262d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   unsigned wrap_s:3;            /**< PIPE_TEX_WRAP_x */
263d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   unsigned wrap_t:3;            /**< PIPE_TEX_WRAP_x */
264d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   unsigned wrap_r:3;            /**< PIPE_TEX_WRAP_x */
26540a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned min_img_filter:2;    /**< PIPE_TEX_FILTER_x */
26640a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned min_mip_filter:2;    /**< PIPE_TEX_MIPFILTER_x */
26740a86b20478024ca7c55400019c536cb5ff631d1Keith Whitwell   unsigned mag_img_filter:2;    /**< PIPE_TEX_FILTER_x */
268d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   unsigned compare_mode:1;      /**< PIPE_TEX_COMPARE_x */
269d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   unsigned compare_func:3;      /**< PIPE_FUNC_x */
270d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   unsigned normalized_coords:1; /**< Are coords normalized to [0,1]? */
271ebe12d50064370e4ddec21a1e087b24295940319Roland Scheidegger   unsigned max_anisotropy:6;
272a5f0a11477ae90f47f3adb59a93c5576dc8c7325Marek Olšák   unsigned seamless_cube_map:1;
273d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   float lod_bias;               /**< LOD/lambda bias */
274d4d2e36a429fd015316c484fc40be7e6d2c69946Brian   float min_lod, max_lod;       /**< LOD clamp range, after bias */
275d45dd5672ae60f1f49648725974693bf4ebf4bf8Brian   float border_color[4];
27602a47549ad182d28d330063d4f452108e3a4b452Brian};
27702a47549ad182d28d330063d4f452108e3a4b452Brian
2785d69aeb0028f44d06093faede5c545908b0df89aBrian
27920adf45c23dd9ec86a1439ad87c1473395bbb1a7Brian/**
2804c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger * A view into a texture that can be bound to a color render target /
2814c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger * depth stencil attachment point.
28220adf45c23dd9ec86a1439ad87c1473395bbb1a7Brian */
28320adf45c23dd9ec86a1439ad87c1473395bbb1a7Brianstruct pipe_surface
28420adf45c23dd9ec86a1439ad87c1473395bbb1a7Brian{
2855e27cd46c04a9e7b5904cc014bffd0f4daae31feMichel Dänzer   struct pipe_reference reference;
286287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   struct pipe_resource *texture; /**< resource into which this is a view  */
2874c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   struct pipe_context *context; /**< context this view belongs to */
2884243ca1144eef5783ed080cce9db1a8dda2c6360Brian Paul   enum pipe_format format;
289287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell
2904c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   /* XXX width/height should be removed */
2915531c986bd34457e113163a68ff4ab98394738f0Brian Paul   unsigned width;               /**< logical width in pixels */
2925531c986bd34457e113163a68ff4ab98394738f0Brian Paul   unsigned height;              /**< logical height in pixels */
293287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell
294287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   unsigned usage;               /**< bitmask of PIPE_BIND_x */
295c9ed86a96483063f3d6789ed16645a3dca77d726Keith Whitwell
2964c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   union {
2974c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      struct {
2984c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned level;
2994c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned first_layer:16;
3004c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned last_layer:16;
3014c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      } tex;
3024c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      struct {
3034c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned first_element;
3044c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned last_element;
3054c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      } buf;
3064c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   } u;
30720adf45c23dd9ec86a1439ad87c1473395bbb1a7Brian};
30820adf45c23dd9ec86a1439ad87c1473395bbb1a7Brian
30920adf45c23dd9ec86a1439ad87c1473395bbb1a7Brian
3105d69aeb0028f44d06093faede5c545908b0df89aBrian/**
311f6106566081978f663cf08e54bb8908cb58a5316Michal Krol * A view into a texture that can be bound to a shader stage.
312f6106566081978f663cf08e54bb8908cb58a5316Michal Krol */
313f6106566081978f663cf08e54bb8908cb58a5316Michal Krolstruct pipe_sampler_view
314f6106566081978f663cf08e54bb8908cb58a5316Michal Krol{
315f6106566081978f663cf08e54bb8908cb58a5316Michal Krol   struct pipe_reference reference;
316f6106566081978f663cf08e54bb8908cb58a5316Michal Krol   enum pipe_format format;      /**< typed PIPE_FORMAT_x */
317287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   struct pipe_resource *texture; /**< texture into which this is a view  */
318f6106566081978f663cf08e54bb8908cb58a5316Michal Krol   struct pipe_context *context; /**< context this view belongs to */
3194c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   union {
3204c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      struct {
3214c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned first_layer:16;     /**< first layer to use for array textures */
3224c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned last_layer:16;      /**< last layer to use for array textures */
3234c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned first_level:8;      /**< first mipmap level to use */
3244c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned last_level:8;       /**< last mipmap level to use */
3254c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      } tex;
3264c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      struct {
3274c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned first_element;
3284c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger         unsigned last_element;
3294c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger      } buf;
3304c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   } u;
331f6106566081978f663cf08e54bb8908cb58a5316Michal Krol   unsigned swizzle_r:3;         /**< PIPE_SWIZZLE_x for red component */
332f6106566081978f663cf08e54bb8908cb58a5316Michal Krol   unsigned swizzle_g:3;         /**< PIPE_SWIZZLE_x for green component */
333f6106566081978f663cf08e54bb8908cb58a5316Michal Krol   unsigned swizzle_b:3;         /**< PIPE_SWIZZLE_x for blue component */
334f6106566081978f663cf08e54bb8908cb58a5316Michal Krol   unsigned swizzle_a:3;         /**< PIPE_SWIZZLE_x for alpha component */
335f6106566081978f663cf08e54bb8908cb58a5316Michal Krol};
336f6106566081978f663cf08e54bb8908cb58a5316Michal Krol
337f6106566081978f663cf08e54bb8908cb58a5316Michal Krol
33897831efdb02ad68c70602a5b3a68c024e49e5715Brian Paul/**
33997831efdb02ad68c70602a5b3a68c024e49e5715Brian Paul * Subregion of 1D/2D/3D image resource.
34097831efdb02ad68c70602a5b3a68c024e49e5715Brian Paul */
341287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwellstruct pipe_box
3424617981ec72f7985941bee4b03c534d97ff96bc6Michel Dänzer{
343287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   unsigned x;
344287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   unsigned y;
345287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   unsigned z;
346287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   unsigned width;
347287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   unsigned height;
348287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   unsigned depth;
3494617981ec72f7985941bee4b03c534d97ff96bc6Michel Dänzer};
3504617981ec72f7985941bee4b03c534d97ff96bc6Michel Dänzer
3514617981ec72f7985941bee4b03c534d97ff96bc6Michel Dänzer
35297831efdb02ad68c70602a5b3a68c024e49e5715Brian Paul/**
35397831efdb02ad68c70602a5b3a68c024e49e5715Brian Paul * A memory object/resource such as a vertex buffer or texture.
35497831efdb02ad68c70602a5b3a68c024e49e5715Brian Paul */
355287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwellstruct pipe_resource
356287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell{
357287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   struct pipe_reference reference;
358287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   struct pipe_screen *screen; /**< screen that this texture belongs to */
3591c5f27a18b775b3784fcd265d60e0affa0b31581Michel Dänzer   enum pipe_texture_target target; /**< PIPE_TEXTURE_x */
3601c5f27a18b775b3784fcd265d60e0affa0b31581Michel Dänzer   enum pipe_format format;         /**< PIPE_FORMAT_x */
36188723b2fc84628c1bc1e0008b88602b85e8668beMichel Dänzer
362683e35f726a182ed9fc6b6d5cb07146eebe14deaKeith Whitwell   unsigned width0;
363683e35f726a182ed9fc6b6d5cb07146eebe14deaKeith Whitwell   unsigned height0;
364683e35f726a182ed9fc6b6d5cb07146eebe14deaKeith Whitwell   unsigned depth0;
3654c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   unsigned array_size;
366d9605cdf7cbbd3c81c506d01eb8e88a11ccfc09bBrian
36718e94e15c0ca881309ac5784075a04160cc1eeb6Keith Whitwell   unsigned last_level:8;    /**< Index of last mipmap level present/defined */
368b9a3952f8f04a25818aba69e235e3d250c064cb8Brian Paul   unsigned nr_samples:8;    /**< for multisampled surfaces, nr of samples */
369a2a01853f3f40b4ef8b3f01503391877960bdaeeBrian Paul   unsigned usage:8;         /**< PIPE_USAGE_x (not a bitmask) */
370429a08384c2ea66d446e46beb28e33ee3b764d52Roland Scheidegger
3714c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   unsigned bind;            /**< bitmask of PIPE_BIND_x */
3724c7001462607e6e99e474d6271dd481d3f8f201cRoland Scheidegger   unsigned flags;           /**< bitmask of PIPE_RESOURCE_FLAG_x */
373287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell};
374d9605cdf7cbbd3c81c506d01eb8e88a11ccfc09bBrian
375713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul
376713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul/**
377713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul * Stream output for vertex transform feedback.
378713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul */
379a45b7f47ee0e38b288cc8fc4f6a1c013e8c227bcZack Rusinstruct pipe_stream_output_state
380a45b7f47ee0e38b288cc8fc4f6a1c013e8c227bcZack Rusin{
381713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul   /** number of the output buffer to insert each element into */
382c9db97c8229689060fab0edee7df717f804b99ceZack Rusin   int output_buffer[PIPE_MAX_SHADER_OUTPUTS];
383713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul   /** which register to grab each output from */
384c9db97c8229689060fab0edee7df717f804b99ceZack Rusin   int register_index[PIPE_MAX_SHADER_OUTPUTS];
385713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul   /** TGSI_WRITEMASK signifying which components to output */
386c9db97c8229689060fab0edee7df717f804b99ceZack Rusin   ubyte register_mask[PIPE_MAX_SHADER_OUTPUTS];
387713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul   /** number of outputs */
388a45b7f47ee0e38b288cc8fc4f6a1c013e8c227bcZack Rusin   int num_outputs;
389713fb507596181f91990a0eb1470f0b95bf2f3d9Brian Paul   /** stride for an entire vertex, only used if all output_buffers are 0 */
390c9db97c8229689060fab0edee7df717f804b99ceZack Rusin   unsigned stride;
391a45b7f47ee0e38b288cc8fc4f6a1c013e8c227bcZack Rusin};
392287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell
393287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell
394287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell/**
39597831efdb02ad68c70602a5b3a68c024e49e5715Brian Paul * Transfer object.  For data transfer to/from a resource.
396287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell */
397287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwellstruct pipe_transfer
398287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell{
399287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   struct pipe_resource *resource; /**< resource to transfer to/from  */
400f9a36a496f874dd3ab20c0f2439a461f4b25deceBrian Paul   unsigned level;                 /**< texture mipmap level */
401287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   enum pipe_transfer_usage usage;
402f9a36a496f874dd3ab20c0f2439a461f4b25deceBrian Paul   struct pipe_box box;            /**< region of the resource to access */
403f9a36a496f874dd3ab20c0f2439a461f4b25deceBrian Paul   unsigned stride;                /**< row stride in bytes */
404f9a36a496f874dd3ab20c0f2439a461f4b25deceBrian Paul   unsigned layer_stride;          /**< image/layer stride in bytes */
405287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   void *data;
406d9605cdf7cbbd3c81c506d01eb8e88a11ccfc09bBrian};
407d9605cdf7cbbd3c81c506d01eb8e88a11ccfc09bBrian
408d9605cdf7cbbd3c81c506d01eb8e88a11ccfc09bBrian
409287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell
4106e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian/**
4116e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian * A vertex buffer.  Typically, all the vertex data/attributes for
4126e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian * drawing something will be in one buffer.  But it's also possible, for
4136e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian * example, to put colors in one buffer and texcoords in another.
4146e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian */
4158269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwellstruct pipe_vertex_buffer
4168269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell{
417872b515e8f0bb1be5bad85fd9d01529c71f07ba2Zack Rusin   unsigned stride;    /**< stride to same attrib in next vertex, in bytes */
4186e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian   unsigned buffer_offset;  /**< offset to start of data in buffer, in bytes */
419287c94ea4987033f9c99a2f91c5750c9083504caKeith Whitwell   struct pipe_resource *buffer;  /**< the actual buffer */
4208269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell};
4218269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell
4228269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell
4236e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian/**
4246e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian * Information to describe a vertex attribute (position, color, etc)
4256e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian */
4268269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwellstruct pipe_vertex_element
4278269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell{
4286e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian   /** Offset of this attribute, in bytes, from the start of the vertex */
42918e94e15c0ca881309ac5784075a04160cc1eeb6Keith Whitwell   unsigned src_offset;
4306e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian
431f7d1689cfa8e3eb2aea4b86031510323b4d13110Michal Krol   /** Instance data rate divisor. 0 means this is per-vertex data,
432f7d1689cfa8e3eb2aea4b86031510323b4d13110Michal Krol    *  n means per-instance data used for n consecutive instances (n > 0).
433f7d1689cfa8e3eb2aea4b86031510323b4d13110Michal Krol    */
434f7d1689cfa8e3eb2aea4b86031510323b4d13110Michal Krol   unsigned instance_divisor;
435f7d1689cfa8e3eb2aea4b86031510323b4d13110Michal Krol
4366e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian   /** Which vertex_buffer (as given to pipe->set_vertex_buffer()) does
4376e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian    * this attribute live in?
4386e02b4c7c3c6efc05ead2ffd46b0928f7c9316bfBrian    */
439d350695a6b86caaee6b2bd1d64b48a26159a8e95Keith Whitwell   unsigned vertex_buffer_index;
440c31416971e4eac148f8e82d6c4392bd6f9cbc05dKeith Whitwell
4414243ca1144eef5783ed080cce9db1a8dda2c6360Brian Paul   enum pipe_format src_format;
4428269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell};
4438269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell
4448269bc48d8fafaa432b58f4adf5e0dddd81d979dKeith Whitwell
445c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu/**
446c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu * An index buffer.  When an index buffer is bound, all indices to vertices
447c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu * will be looked up in the buffer.
448c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu */
449c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wustruct pipe_index_buffer
450c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu{
451c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned index_size;  /**< size of an index, in bytes */
452c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned offset;  /**< offset to start of data in buffer, in bytes */
453c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   struct pipe_resource *buffer; /**< the actual buffer */
454c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu};
455c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu
456c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu
457c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu/**
458c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu * Information to describe a draw_vbo call.
459c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu */
460c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wustruct pipe_draw_info
461c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu{
462c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   boolean indexed;  /**< use index buffer */
463c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu
464c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned mode;  /**< the mode of the primitive */
465c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned start;  /**< the index of the first vertex */
466c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned count;  /**< number of vertices */
467c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu
468c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned start_instance; /**< first instance id */
469c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned instance_count; /**< number of instances */
470c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu
471c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   /**
472c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu    * For indexed drawing, these fields apply after index lookup.
473c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu    */
474c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   int index_bias; /**< a bias to be added to each index */
475c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned min_index; /**< the min index */
476c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu   unsigned max_index; /**< the max index */
477adf35e80d3b3d37b97f0608a5a2f221dbd8c0d64Brian Paul
478adf35e80d3b3d37b97f0608a5a2f221dbd8c0d64Brian Paul   /**
479adf35e80d3b3d37b97f0608a5a2f221dbd8c0d64Brian Paul    * Primitive restart enable/index (only applies to indexed drawing)
480adf35e80d3b3d37b97f0608a5a2f221dbd8c0d64Brian Paul    */
481adf35e80d3b3d37b97f0608a5a2f221dbd8c0d64Brian Paul   boolean primitive_restart;
482adf35e80d3b3d37b97f0608a5a2f221dbd8c0d64Brian Paul   unsigned restart_index;
483c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu};
484c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu
485c5e9d3114a80d6d35a2f4e65783cdc75fcc2deacChia-I Wu
48694822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller/**
48794822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller * Information to describe a resource_resolve call.
48894822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller */
48994822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumillerstruct pipe_resolve_info
49094822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller{
49194822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller   struct {
49294822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      struct pipe_resource *res;
49394822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      unsigned level;
49494822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      unsigned layer;
49594822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int x0; /**< always left */
49694822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int y0; /**< always top */
49794822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int x1; /**< determines scale if PIPE_CAP_SCALED_RESOLVE is supported */
49894822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int y1; /**< determines scale if PIPE_CAP_SCALED_RESOLVE is supported */
49994822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller   } dst;
50094822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller
50194822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller   struct {
50294822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      struct pipe_resource *res;
50394822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      unsigned layer;
50494822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int x0;
50594822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int y0;
50694822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int x1; /**< may be < x0 only if PIPE_CAP_SCALED_RESOLVE is supported */
50794822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller      int y1; /**< may be < y1 even if PIPE_CAP_SCALED_RESOLVE not supported */
50894822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller   } src;
50994822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller
51094822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller   unsigned mask; /**< PIPE_MASK_RGBA, Z, S or ZS */
51194822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller};
51294822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller
51394822c6d83b7811db2a02bb4416df02ae225ba47Christoph Bumiller
514e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca#ifdef __cplusplus
515e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca}
516e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca#endif
517e4e30089231831339815cccebf3a3a0ea6dcd2a9José Fonseca
5188e4a95a93d15a6707a29454cd47e10b08314cda2Keith Whitwell#endif
519