blob: 81da4b864487713577ea7a275cdd393cf15717c9 [file] [log] [blame]
Brian72345502007-05-24 16:49:27 -06001/**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
Keith Whitwell943964a2007-06-14 18:23:43 +010028#ifndef PIPE_DEFINES_H
29#define PIPE_DEFINES_H
Keith Whitwell8e4a95a2007-05-24 10:41:34 +010030
Vinson Lee121b6d62010-08-26 01:30:07 -070031#include "p_compiler.h"
michal26df9d12007-10-26 17:17:52 +010032
José Fonsecae4e30082008-02-25 20:05:41 +090033#ifdef __cplusplus
34extern "C" {
35#endif
36
José Fonseca3a494972009-10-25 21:11:54 +000037/**
38 * Gallium error codes.
39 *
40 * - A zero value always means success.
41 * - A negative value always means failure.
42 * - The meaning of a positive value is function dependent.
43 */
44enum pipe_error {
45 PIPE_OK = 0,
46 PIPE_ERROR = -1, /**< Generic error */
47 PIPE_ERROR_BAD_INPUT = -2,
48 PIPE_ERROR_OUT_OF_MEMORY = -3,
49 PIPE_ERROR_RETRY = -4
50 /* TODO */
51};
52
53
Keith Whitwell943964a2007-06-14 18:23:43 +010054#define PIPE_BLENDFACTOR_ONE 0x1
55#define PIPE_BLENDFACTOR_SRC_COLOR 0x2
56#define PIPE_BLENDFACTOR_SRC_ALPHA 0x3
57#define PIPE_BLENDFACTOR_DST_ALPHA 0x4
58#define PIPE_BLENDFACTOR_DST_COLOR 0x5
59#define PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE 0x6
60#define PIPE_BLENDFACTOR_CONST_COLOR 0x7
61#define PIPE_BLENDFACTOR_CONST_ALPHA 0x8
62#define PIPE_BLENDFACTOR_SRC1_COLOR 0x9
63#define PIPE_BLENDFACTOR_SRC1_ALPHA 0x0A
64#define PIPE_BLENDFACTOR_ZERO 0x11
65#define PIPE_BLENDFACTOR_INV_SRC_COLOR 0x12
66#define PIPE_BLENDFACTOR_INV_SRC_ALPHA 0x13
67#define PIPE_BLENDFACTOR_INV_DST_ALPHA 0x14
68#define PIPE_BLENDFACTOR_INV_DST_COLOR 0x15
69#define PIPE_BLENDFACTOR_INV_CONST_COLOR 0x17
70#define PIPE_BLENDFACTOR_INV_CONST_ALPHA 0x18
71#define PIPE_BLENDFACTOR_INV_SRC1_COLOR 0x19
72#define PIPE_BLENDFACTOR_INV_SRC1_ALPHA 0x1A
Keith Whitwell8e4a95a2007-05-24 10:41:34 +010073
Keith Whitwell943964a2007-06-14 18:23:43 +010074#define PIPE_BLEND_ADD 0
75#define PIPE_BLEND_SUBTRACT 1
76#define PIPE_BLEND_REVERSE_SUBTRACT 2
77#define PIPE_BLEND_MIN 3
78#define PIPE_BLEND_MAX 4
Keith Whitwell8e4a95a2007-05-24 10:41:34 +010079
Keith Whitwell943964a2007-06-14 18:23:43 +010080#define PIPE_LOGICOP_CLEAR 0
81#define PIPE_LOGICOP_NOR 1
82#define PIPE_LOGICOP_AND_INVERTED 2
83#define PIPE_LOGICOP_COPY_INVERTED 3
84#define PIPE_LOGICOP_AND_REVERSE 4
85#define PIPE_LOGICOP_INVERT 5
86#define PIPE_LOGICOP_XOR 6
87#define PIPE_LOGICOP_NAND 7
88#define PIPE_LOGICOP_AND 8
89#define PIPE_LOGICOP_EQUIV 9
90#define PIPE_LOGICOP_NOOP 10
91#define PIPE_LOGICOP_OR_INVERTED 11
92#define PIPE_LOGICOP_COPY 12
93#define PIPE_LOGICOP_OR_REVERSE 13
94#define PIPE_LOGICOP_OR 14
95#define PIPE_LOGICOP_SET 15
Keith Whitwell8e4a95a2007-05-24 10:41:34 +010096
Brian86352ff2007-07-12 12:20:14 -060097#define PIPE_MASK_R 0x1
98#define PIPE_MASK_G 0x2
99#define PIPE_MASK_B 0x4
100#define PIPE_MASK_A 0x8
Brian5936b4392007-08-02 10:29:04 -0600101#define PIPE_MASK_RGBA 0xf
102
Brian86352ff2007-07-12 12:20:14 -0600103
Brianefe6c502007-06-18 17:53:09 -0600104/**
105 * Inequality functions. Used for depth test, stencil compare, alpha
106 * test, shadow compare, etc.
107 */
108#define PIPE_FUNC_NEVER 0
109#define PIPE_FUNC_LESS 1
110#define PIPE_FUNC_EQUAL 2
111#define PIPE_FUNC_LEQUAL 3
112#define PIPE_FUNC_GREATER 4
113#define PIPE_FUNC_NOTEQUAL 5
114#define PIPE_FUNC_GEQUAL 6
115#define PIPE_FUNC_ALWAYS 7
Brian008fb502007-05-24 17:37:36 -0600116
Brian2137e302007-06-19 08:43:05 -0600117/** Polygon fill mode */
118#define PIPE_POLYGON_MODE_FILL 0
119#define PIPE_POLYGON_MODE_LINE 1
120#define PIPE_POLYGON_MODE_POINT 2
121
Keith Whitwell0bd1cbc2010-05-14 13:04:42 +0100122/** Polygon face specification, eg for culling */
123#define PIPE_FACE_NONE 0
124#define PIPE_FACE_FRONT 1
125#define PIPE_FACE_BACK 2
126#define PIPE_FACE_FRONT_AND_BACK (PIPE_FACE_FRONT | PIPE_FACE_BACK)
Brian2137e302007-06-19 08:43:05 -0600127
Brianf79c2252007-06-22 12:47:04 -0600128/** Stencil ops */
Keith Whitwell943964a2007-06-14 18:23:43 +0100129#define PIPE_STENCIL_OP_KEEP 0
130#define PIPE_STENCIL_OP_ZERO 1
131#define PIPE_STENCIL_OP_REPLACE 2
132#define PIPE_STENCIL_OP_INCR 3
133#define PIPE_STENCIL_OP_DECR 4
134#define PIPE_STENCIL_OP_INCR_WRAP 5
135#define PIPE_STENCIL_OP_DECR_WRAP 6
136#define PIPE_STENCIL_OP_INVERT 7
Brian008fb502007-05-24 17:37:36 -0600137
Luca Barbieri72b3e3f2010-04-15 09:02:29 +0200138/** Texture types.
139 * See the documentation for info on PIPE_TEXTURE_RECT vs PIPE_TEXTURE_2D */
Michel Dänzer1c5f27a2008-01-04 17:06:55 +0100140enum pipe_texture_target {
Roland Scheidegger4c700142010-12-02 04:33:43 +0100141 PIPE_BUFFER = 0,
142 PIPE_TEXTURE_1D = 1,
143 PIPE_TEXTURE_2D = 2,
144 PIPE_TEXTURE_3D = 3,
145 PIPE_TEXTURE_CUBE = 4,
146 PIPE_TEXTURE_RECT = 5,
147 PIPE_TEXTURE_1D_ARRAY = 6,
148 PIPE_TEXTURE_2D_ARRAY = 7,
Marek Olšáke1d0f472009-12-14 19:05:15 +0100149 PIPE_MAX_TEXTURE_TYPES
Michel Dänzer1c5f27a2008-01-04 17:06:55 +0100150};
Brianeb147ed2007-08-08 10:26:16 -0600151
152#define PIPE_TEX_FACE_POS_X 0
153#define PIPE_TEX_FACE_NEG_X 1
154#define PIPE_TEX_FACE_POS_Y 2
155#define PIPE_TEX_FACE_NEG_Y 3
156#define PIPE_TEX_FACE_POS_Z 4
157#define PIPE_TEX_FACE_NEG_Z 5
Brian Paul95b77712009-05-05 09:39:39 -0600158#define PIPE_TEX_FACE_MAX 6
Brianeb147ed2007-08-08 10:26:16 -0600159
Keith Whitwell943964a2007-06-14 18:23:43 +0100160#define PIPE_TEX_WRAP_REPEAT 0
161#define PIPE_TEX_WRAP_CLAMP 1
162#define PIPE_TEX_WRAP_CLAMP_TO_EDGE 2
163#define PIPE_TEX_WRAP_CLAMP_TO_BORDER 3
164#define PIPE_TEX_WRAP_MIRROR_REPEAT 4
165#define PIPE_TEX_WRAP_MIRROR_CLAMP 5
166#define PIPE_TEX_WRAP_MIRROR_CLAMP_TO_EDGE 6
167#define PIPE_TEX_WRAP_MIRROR_CLAMP_TO_BORDER 7
Brian02a47542007-05-30 16:26:55 -0600168
Keith Whitwell78b1a292007-08-09 19:09:19 +0100169/* Between mipmaps, ie mipfilter
170 */
171#define PIPE_TEX_MIPFILTER_NEAREST 0
172#define PIPE_TEX_MIPFILTER_LINEAR 1
173#define PIPE_TEX_MIPFILTER_NONE 2
174
175/* Within a mipmap, ie min/mag filter
176 */
177#define PIPE_TEX_FILTER_NEAREST 0
178#define PIPE_TEX_FILTER_LINEAR 1
Brian02a47542007-05-30 16:26:55 -0600179
Keith Whitwell943964a2007-06-14 18:23:43 +0100180#define PIPE_TEX_COMPARE_NONE 0
181#define PIPE_TEX_COMPARE_R_TO_TEXTURE 1
Brian8f288872007-05-30 16:07:39 -0600182
Keith Whitwell8e6a3802008-05-03 15:41:05 +0100183/**
Michel Dänzereb168e22009-04-04 19:01:51 +0200184 * Clear buffer bits
185 */
186/** All color buffers currently bound */
187#define PIPE_CLEAR_COLOR (1 << 0)
Roland Scheidegger0cd70b52010-05-28 23:57:47 +0200188#define PIPE_CLEAR_DEPTH (1 << 1)
189#define PIPE_CLEAR_STENCIL (1 << 2)
Michel Dänzereb168e22009-04-04 19:01:51 +0200190/** Depth/stencil combined */
Roland Scheidegger0cd70b52010-05-28 23:57:47 +0200191#define PIPE_CLEAR_DEPTHSTENCIL (PIPE_CLEAR_DEPTH | PIPE_CLEAR_STENCIL)
Michel Dänzereb168e22009-04-04 19:01:51 +0200192
193/**
Michel Dänzer46179812009-02-05 19:41:18 +0100194 * Transfer object usage flags
195 */
196enum pipe_transfer_usage {
Keith Whitwell287c94e2010-04-10 16:05:54 +0100197 /**
198 * Resource contents read back (or accessed directly) at transfer
199 * create time.
200 */
Maarten Maathuisf199dbd2009-08-16 03:20:09 +0200201 PIPE_TRANSFER_READ = (1 << 0),
Keith Whitwell287c94e2010-04-10 16:05:54 +0100202
203 /**
204 * Resource contents will be written back at transfer_destroy
205 * time (or modified as a result of being accessed directly).
206 */
Maarten Maathuisf199dbd2009-08-16 03:20:09 +0200207 PIPE_TRANSFER_WRITE = (1 << 1),
Keith Whitwell287c94e2010-04-10 16:05:54 +0100208
209 /**
210 * Read/modify/write
211 */
Michel Dänzer9db647b2009-10-02 18:13:26 +0200212 PIPE_TRANSFER_READ_WRITE = PIPE_TRANSFER_READ | PIPE_TRANSFER_WRITE,
Keith Whitwell287c94e2010-04-10 16:05:54 +0100213
Michel Dänzer9db647b2009-10-02 18:13:26 +0200214 /**
215 * The transfer should map the texture storage directly. The driver may
216 * return NULL if that isn't possible, and the state tracker needs to cope
217 * with that and use an alternative path without this flag.
218 *
219 * E.g. the state tracker could have a simpler path which maps textures and
220 * does read/modify/write cycles on them directly, and a more complicated
221 * path which uses minimal read and write transfers.
222 */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100223 PIPE_TRANSFER_MAP_DIRECTLY = (1 << 2),
224
225 /**
226 * Discards the memory within the mapped region.
227 *
José Fonseca7aeb6102011-02-22 14:14:45 +0000228 * It should not be used with PIPE_TRANSFER_READ.
Keith Whitwell287c94e2010-04-10 16:05:54 +0100229 *
230 * See also:
231 * - OpenGL's ARB_map_buffer_range extension, MAP_INVALIDATE_RANGE_BIT flag.
Keith Whitwell287c94e2010-04-10 16:05:54 +0100232 */
Keith Whitwellfad84972011-01-05 17:33:43 +0000233 PIPE_TRANSFER_DISCARD = (1 << 8), /* DEPRECATED */
234 PIPE_TRANSFER_DISCARD_RANGE = (1 << 8),
Keith Whitwell287c94e2010-04-10 16:05:54 +0100235
236 /**
237 * Fail if the resource cannot be mapped immediately.
238 *
239 * See also:
240 * - Direct3D's D3DLOCK_DONOTWAIT flag.
241 * - Mesa3D's MESA_MAP_NOWAIT_BIT flag.
242 * - WDDM's D3DDDICB_LOCKFLAGS.DonotWait flag.
243 */
244 PIPE_TRANSFER_DONTBLOCK = (1 << 9),
245
246 /**
247 * Do not attempt to synchronize pending operations on the resource when mapping.
248 *
José Fonseca7aeb6102011-02-22 14:14:45 +0000249 * It should not be used with PIPE_TRANSFER_READ.
Keith Whitwell287c94e2010-04-10 16:05:54 +0100250 *
251 * See also:
252 * - OpenGL's ARB_map_buffer_range extension, MAP_UNSYNCHRONIZED_BIT flag.
253 * - Direct3D's D3DLOCK_NOOVERWRITE flag.
254 * - WDDM's D3DDDICB_LOCKFLAGS.IgnoreSync flag.
255 */
256 PIPE_TRANSFER_UNSYNCHRONIZED = (1 << 10),
257 PIPE_TRANSFER_NOOVERWRITE = (1 << 10), /* are these really the same?? */
258
259 /**
260 * Written ranges will be notified later with
261 * pipe_context::transfer_flush_region.
262 *
José Fonseca7aeb6102011-02-22 14:14:45 +0000263 * It should not be used with PIPE_TRANSFER_READ.
Keith Whitwell287c94e2010-04-10 16:05:54 +0100264 *
265 * See also:
266 * - pipe_context::transfer_flush_region
267 * - OpenGL's ARB_map_buffer_range extension, MAP_FLUSH_EXPLICIT_BIT flag.
268 */
Keith Whitwellfad84972011-01-05 17:33:43 +0000269 PIPE_TRANSFER_FLUSH_EXPLICIT = (1 << 11),
270
271 /**
272 * Discards all memory backing the resource.
273 *
José Fonseca7aeb6102011-02-22 14:14:45 +0000274 * It should not be used with PIPE_TRANSFER_READ.
Keith Whitwellfad84972011-01-05 17:33:43 +0000275 *
276 * This is equivalent to:
277 * - OpenGL's ARB_map_buffer_range extension, MAP_INVALIDATE_BUFFER_BIT
278 * - BufferData(NULL) on a GL buffer
279 * - Direct3D's D3DLOCK_DISCARD flag.
280 * - WDDM's D3DDDICB_LOCKFLAGS.Discard flag.
281 * - D3D10 DDI's D3D10_DDI_MAP_WRITE_DISCARD flag
282 * - D3D10's D3D10_MAP_WRITE_DISCARD flag.
283 */
284 PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE = (1 << 12)
Keith Whitwell287c94e2010-04-10 16:05:54 +0100285
Michel Dänzer46179812009-02-05 19:41:18 +0100286};
287
288
José Fonseca244591a2009-11-06 12:04:20 +0000289/*
Keith Whitwell287c94e2010-04-10 16:05:54 +0100290 * Resource binding flags -- state tracker must specify in advance all
291 * the ways a resource might be used.
José Fonsecafa1a66d2007-11-05 18:04:35 +0000292 */
Roland Scheidegger4c700142010-12-02 04:33:43 +0100293#define PIPE_BIND_DEPTH_STENCIL (1 << 0) /* create_surface */
294#define PIPE_BIND_RENDER_TARGET (1 << 1) /* create_surface */
295#define PIPE_BIND_SAMPLER_VIEW (1 << 2) /* create_sampler_view */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100296#define PIPE_BIND_VERTEX_BUFFER (1 << 3) /* set_vertex_buffers */
297#define PIPE_BIND_INDEX_BUFFER (1 << 4) /* draw_elements */
298#define PIPE_BIND_CONSTANT_BUFFER (1 << 5) /* set_constant_buffer */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100299#define PIPE_BIND_DISPLAY_TARGET (1 << 8) /* flush_front_buffer */
300#define PIPE_BIND_TRANSFER_WRITE (1 << 9) /* get_transfer */
301#define PIPE_BIND_TRANSFER_READ (1 << 10) /* get_transfer */
Zack Rusina45b7f42010-05-28 13:14:07 -0400302#define PIPE_BIND_STREAM_OUTPUT (1 << 11) /* set_stream_output_buffers */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100303#define PIPE_BIND_CUSTOM (1 << 16) /* state-tracker/winsys usages */
José Fonseca244591a2009-11-06 12:04:20 +0000304
Brian Paul50d77c72010-04-22 11:33:26 -0600305/* The first two flags above were previously part of the amorphous
Keith Whitwell287c94e2010-04-10 16:05:54 +0100306 * TEXTURE_USAGE, most of which are now descriptions of the ways a
Brian Paul50d77c72010-04-22 11:33:26 -0600307 * particular texture can be bound to the gallium pipeline. The two flags
308 * below do not fit within that and probably need to be migrated to some
Keith Whitwell287c94e2010-04-10 16:05:54 +0100309 * other place.
José Fonseca244591a2009-11-06 12:04:20 +0000310 *
Keith Whitwell287c94e2010-04-10 16:05:54 +0100311 * It seems like scanout is used by the Xorg state tracker to ask for
312 * a texture suitable for actual scanout (hence the name), which
313 * implies extra layout constraints on some hardware. It may also
314 * have some special meaning regarding mouse cursor images.
José Fonseca244591a2009-11-06 12:04:20 +0000315 *
Keith Whitwell287c94e2010-04-10 16:05:54 +0100316 * The shared flag is quite underspecified, but certainly isn't a
317 * binding flag - it seems more like a message to the winsys to create
Brian Paul50d77c72010-04-22 11:33:26 -0600318 * a shareable allocation.
José Fonseca244591a2009-11-06 12:04:20 +0000319 */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100320#define PIPE_BIND_SCANOUT (1 << 14) /* */
321#define PIPE_BIND_SHARED (1 << 15) /* get_texture_handle ??? */
José Fonseca244591a2009-11-06 12:04:20 +0000322
Keith Whitwell287c94e2010-04-10 16:05:54 +0100323
324/* Flags for the driver about resource behaviour:
José Fonseca244591a2009-11-06 12:04:20 +0000325 */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100326#define PIPE_RESOURCE_FLAG_GEN_MIPS (1 << 0) /* Driver performs autogen mips */
327#define PIPE_RESOURCE_FLAG_DRV_PRIV (1 << 16) /* driver/winsys private */
328#define PIPE_RESOURCE_FLAG_ST_PRIV (1 << 24) /* state-tracker/winsys private */
José Fonseca244591a2009-11-06 12:04:20 +0000329
Keith Whitwell287c94e2010-04-10 16:05:54 +0100330/* Hint about the expected lifecycle of a resource.
José Fonseca244591a2009-11-06 12:04:20 +0000331 */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100332#define PIPE_USAGE_DEFAULT 0 /* many uploads, draws intermixed */
333#define PIPE_USAGE_DYNAMIC 1 /* many uploads, draws intermixed */
334#define PIPE_USAGE_STATIC 2 /* same as immutable?? */
335#define PIPE_USAGE_IMMUTABLE 3 /* no change after first upload */
336#define PIPE_USAGE_STREAM 4 /* upload, draw, upload, draw */
Zack Rusina45b7f42010-05-28 13:14:07 -0400337#define PIPE_USAGE_STAGING 5 /* supports data transfers from the GPU to the CPU */
José Fonseca244591a2009-11-06 12:04:20 +0000338
Keith Whitwell287c94e2010-04-10 16:05:54 +0100339
340/* These are intended to be used in calls to is_format_supported, but
341 * no driver actually uses these flags, and only the glx/xlib state
342 * tracker issues them.
José Fonseca244591a2009-11-06 12:04:20 +0000343 *
Keith Whitwell287c94e2010-04-10 16:05:54 +0100344 * Deprecate?
José Fonseca244591a2009-11-06 12:04:20 +0000345 */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100346#define PIPE_TEXTURE_GEOM_NON_SQUARE 0x1
347#define PIPE_TEXTURE_GEOM_NON_POWER_OF_TWO 0x2
José Fonsecad600c802008-11-24 13:45:19 +0900348
Keith Whitwell93d5cfd2007-08-08 16:42:01 +0100349
350/**
351 * Flush types:
352 */
Brianae44a812007-11-07 16:59:37 -0700353#define PIPE_FLUSH_RENDER_CACHE 0x1
Keith Whitwell93d5cfd2007-08-08 16:42:01 +0100354#define PIPE_FLUSH_TEXTURE_CACHE 0x2
Michel Dänzer4abe1eb2008-03-26 09:36:40 +0000355#define PIPE_FLUSH_SWAPBUFFERS 0x4
José Fonsecadaa481a2008-08-14 11:39:41 +0100356#define PIPE_FLUSH_FRAME 0x8 /**< Mark the end of a frame */
Keith Whitwell93d5cfd2007-08-08 16:42:01 +0100357
Keith Whitwell40a86b22007-08-13 16:07:11 +0100358
Brian94a49102007-08-15 19:13:03 -0600359/**
Brianc0bb4ba2007-08-22 12:24:51 -0600360 * Shaders
361 */
362#define PIPE_SHADER_VERTEX 0
363#define PIPE_SHADER_FRAGMENT 1
Zack Rusin89d85772009-12-14 17:11:46 -0500364#define PIPE_SHADER_GEOMETRY 2
365#define PIPE_SHADER_TYPES 3
Brianc0bb4ba2007-08-22 12:24:51 -0600366
367
368/**
Brian94a49102007-08-15 19:13:03 -0600369 * Primitive types:
370 */
Zack Rusin89d85772009-12-14 17:11:46 -0500371#define PIPE_PRIM_POINTS 0
372#define PIPE_PRIM_LINES 1
373#define PIPE_PRIM_LINE_LOOP 2
374#define PIPE_PRIM_LINE_STRIP 3
375#define PIPE_PRIM_TRIANGLES 4
376#define PIPE_PRIM_TRIANGLE_STRIP 5
377#define PIPE_PRIM_TRIANGLE_FAN 6
378#define PIPE_PRIM_QUADS 7
379#define PIPE_PRIM_QUAD_STRIP 8
380#define PIPE_PRIM_POLYGON 9
381#define PIPE_PRIM_LINES_ADJACENCY 10
382#define PIPE_PRIM_LINE_STRIP_ADJACENCY 11
383#define PIPE_PRIM_TRIANGLES_ADJACENCY 12
384#define PIPE_PRIM_TRIANGLE_STRIP_ADJACENCY 13
385#define PIPE_PRIM_MAX 14
Brian94a49102007-08-15 19:13:03 -0600386
Keith Whitwell40a86b22007-08-13 16:07:11 +0100387
Brian09fbb382007-09-11 16:01:17 -0600388/**
389 * Query object types
390 */
391#define PIPE_QUERY_OCCLUSION_COUNTER 0
392#define PIPE_QUERY_PRIMITIVES_GENERATED 1
393#define PIPE_QUERY_PRIMITIVES_EMITTED 2
Mathias Fröhlichcdbd5f42010-05-17 11:48:56 -0700394#define PIPE_QUERY_TIME_ELAPSED 3
Zack Rusinbe7d8dd2010-06-07 12:14:56 -0400395#define PIPE_QUERY_SO_STATISTICS 5
Zack Rusinb6c360b2010-06-21 22:11:07 -0400396#define PIPE_QUERY_GPU_FINISHED 6
Zack Rusine433b732010-06-22 12:14:29 -0400397#define PIPE_QUERY_TIMESTAMP_DISJOINT 7
Zack Rusin0657fc02011-01-26 00:01:51 -0500398#define PIPE_QUERY_OCCLUSION_PREDICATE 8
399#define PIPE_QUERY_TYPES 9
Brian09fbb382007-09-11 16:01:17 -0600400
Brian37cf13e2007-09-19 18:53:36 -0600401
Brian1b485232007-10-22 12:10:30 -0600402/**
Brian Paulc0b4fb02009-12-31 14:44:40 -0700403 * Conditional rendering modes
404 */
405#define PIPE_RENDER_COND_WAIT 0
406#define PIPE_RENDER_COND_NO_WAIT 1
407#define PIPE_RENDER_COND_BY_REGION_WAIT 2
408#define PIPE_RENDER_COND_BY_REGION_NO_WAIT 3
409
410
411/**
Brian1b485232007-10-22 12:10:30 -0600412 * Point sprite coord modes
413 */
Roland Scheidegger4a4daa72010-02-03 17:25:14 +0100414#define PIPE_SPRITE_COORD_UPPER_LEFT 0
415#define PIPE_SPRITE_COORD_LOWER_LEFT 1
Brian1b485232007-10-22 12:10:30 -0600416
Brianc6499a72007-11-05 18:04:30 -0700417
418/**
Michal Krolf6106562010-02-19 19:00:26 +0100419 * Texture swizzles
420 */
421#define PIPE_SWIZZLE_RED 0
422#define PIPE_SWIZZLE_GREEN 1
423#define PIPE_SWIZZLE_BLUE 2
424#define PIPE_SWIZZLE_ALPHA 3
425#define PIPE_SWIZZLE_ZERO 4
426#define PIPE_SWIZZLE_ONE 5
427
428
429/**
Brian Paulaebc08b2009-06-09 11:10:09 -0600430 * Implementation capabilities/limits which are queried through
431 * pipe_screen::get_param() and pipe_screen::get_paramf().
Brianc6499a72007-11-05 18:04:30 -0700432 */
José Fonsecae1238b52010-05-11 11:11:03 +0100433enum pipe_cap {
434 PIPE_CAP_MAX_TEXTURE_IMAGE_UNITS,
435 PIPE_CAP_NPOT_TEXTURES,
436 PIPE_CAP_TWO_SIDED_STENCIL,
437 PIPE_CAP_GLSL, /* XXX need something better */
438 PIPE_CAP_DUAL_SOURCE_BLEND,
439 PIPE_CAP_ANISOTROPIC_FILTER,
440 PIPE_CAP_POINT_SPRITE,
441 PIPE_CAP_MAX_RENDER_TARGETS,
442 PIPE_CAP_OCCLUSION_QUERY,
Mathias Fröhlichcdbd5f42010-05-17 11:48:56 -0700443 PIPE_CAP_TIMER_QUERY,
José Fonsecae1238b52010-05-11 11:11:03 +0100444 PIPE_CAP_TEXTURE_SHADOW_MAP,
Dave Airlie42ebe3d2010-04-27 21:06:44 +1000445 PIPE_CAP_TEXTURE_SWIZZLE,
José Fonsecae1238b52010-05-11 11:11:03 +0100446 PIPE_CAP_MAX_TEXTURE_2D_LEVELS,
447 PIPE_CAP_MAX_TEXTURE_3D_LEVELS,
448 PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS,
449 PIPE_CAP_MAX_LINE_WIDTH,
450 PIPE_CAP_MAX_LINE_WIDTH_AA,
451 PIPE_CAP_MAX_POINT_WIDTH,
452 PIPE_CAP_MAX_POINT_WIDTH_AA,
453 PIPE_CAP_MAX_TEXTURE_ANISOTROPY,
454 PIPE_CAP_MAX_TEXTURE_LOD_BIAS,
455 PIPE_CAP_GUARD_BAND_LEFT, /*< float */
456 PIPE_CAP_GUARD_BAND_TOP, /*< float */
457 PIPE_CAP_GUARD_BAND_RIGHT, /*< float */
458 PIPE_CAP_GUARD_BAND_BOTTOM, /*< float */
459 PIPE_CAP_TEXTURE_MIRROR_CLAMP,
460 PIPE_CAP_TEXTURE_MIRROR_REPEAT,
461 PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS,
José Fonsecae1238b52010-05-11 11:11:03 +0100462 PIPE_CAP_BLEND_EQUATION_SEPARATE,
463 PIPE_CAP_SM3, /*< Shader Model, supported */
Zack Rusin2c22b8e2010-06-01 12:47:23 -0400464 PIPE_CAP_STREAM_OUTPUT,
Brian Pauladf35e82010-10-21 19:03:38 -0600465 PIPE_CAP_PRIMITIVE_RESTART,
José Fonsecae1238b52010-05-11 11:11:03 +0100466 /** Maximum texture image units accessible from vertex and fragment shaders
467 * combined */
468 PIPE_CAP_MAX_COMBINED_SAMPLERS,
José Fonsecae1238b52010-05-11 11:11:03 +0100469 /** blend enables and write masks per rendertarget */
470 PIPE_CAP_INDEP_BLEND_ENABLE,
471 /** different blend funcs per rendertarget */
472 PIPE_CAP_INDEP_BLEND_FUNC,
Roland Scheidegger0cd70b52010-05-28 23:57:47 +0200473 PIPE_CAP_DEPTHSTENCIL_CLEAR_SEPARATE,
Roland Scheidegger4c700142010-12-02 04:33:43 +0100474 PIPE_CAP_ARRAY_TEXTURES,
José Fonsecae1238b52010-05-11 11:11:03 +0100475 PIPE_CAP_TGSI_FS_COORD_ORIGIN_UPPER_LEFT,
476 PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT,
477 PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_HALF_INTEGER,
478 PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER,
Dave Airlie4ecb2c12010-10-06 09:28:46 +1000479 PIPE_CAP_DEPTH_CLAMP,
480 PIPE_CAP_SHADER_STENCIL_EXPORT,
Brian Pauld87bc012010-12-05 13:32:59 -0700481 PIPE_CAP_INSTANCED_DRAWING,
José Fonsecae1238b52010-05-11 11:11:03 +0100482};
Brian Paulbe66a8f2008-08-06 17:22:29 -0600483
Luca Barbieria508d2d2010-09-05 20:50:50 +0200484/* Shader caps not specific to any single stage */
485enum pipe_shader_cap
486{
487 PIPE_SHADER_CAP_MAX_INSTRUCTIONS, /* if 0, it means the stage is unsupported */
488 PIPE_SHADER_CAP_MAX_ALU_INSTRUCTIONS,
489 PIPE_SHADER_CAP_MAX_TEX_INSTRUCTIONS,
490 PIPE_SHADER_CAP_MAX_TEX_INDIRECTIONS,
491 PIPE_SHADER_CAP_MAX_CONTROL_FLOW_DEPTH,
492 PIPE_SHADER_CAP_MAX_INPUTS,
493 PIPE_SHADER_CAP_MAX_CONSTS,
494 PIPE_SHADER_CAP_MAX_CONST_BUFFERS,
495 PIPE_SHADER_CAP_MAX_TEMPS,
496 PIPE_SHADER_CAP_MAX_ADDRS,
497 PIPE_SHADER_CAP_MAX_PREDS,
Marek Olšákcbfdf262010-11-10 20:41:55 +0100498 /* boolean caps */
Luca Barbieria508d2d2010-09-05 20:50:50 +0200499 PIPE_SHADER_CAP_TGSI_CONT_SUPPORTED,
Marek Olšákcbfdf262010-11-10 20:41:55 +0100500 PIPE_SHADER_CAP_INDIRECT_INPUT_ADDR,
501 PIPE_SHADER_CAP_INDIRECT_OUTPUT_ADDR,
502 PIPE_SHADER_CAP_INDIRECT_TEMP_ADDR,
503 PIPE_SHADER_CAP_INDIRECT_CONST_ADDR,
Marek Olšák9aa089e2010-11-14 15:34:59 +0100504 PIPE_SHADER_CAP_SUBROUTINES, /* BGNSUB, ENDSUB, CAL, RET */
Luca Barbieria508d2d2010-09-05 20:50:50 +0200505};
Brian Paul07aaf3a2008-05-02 14:00:08 -0600506
Thomas Hellstrom9b756272009-04-15 15:53:34 +0200507/**
508 * Referenced query flags.
509 */
510
511#define PIPE_UNREFERENCED 0
512#define PIPE_REFERENCED_FOR_READ (1 << 0)
513#define PIPE_REFERENCED_FOR_WRITE (1 << 1)
Brianc6499a72007-11-05 18:04:30 -0700514
Zack Rusinbe7d8dd2010-06-07 12:14:56 -0400515/**
516 * Composite query types
517 */
518struct pipe_query_data_so_statistics
519{
520 uint64_t num_primitives_written;
521 uint64_t primitives_storage_needed;
522};
Zack Rusine433b732010-06-22 12:14:29 -0400523struct pipe_query_data_timestamp_disjoint
524{
525 uint64_t frequency;
526 boolean disjoint;
527};
Younes Mantonf5474722009-09-27 19:49:06 -0400528
José Fonsecae4e30082008-02-25 20:05:41 +0900529#ifdef __cplusplus
530}
531#endif
532
Brian72345502007-05-24 16:49:27 -0600533#endif