dcfe7e15361dba21f9355d66b77b8b386751b6cf
[mesa.git] / src / mesa / state_tracker / st_draw.h
1 /**************************************************************************
2 *
3 * Copyright 2004 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
28 /*
29 * Authors:
30 * Keith Whitwell <keith@tungstengraphics.com>
31 */
32
33
34 #ifndef ST_DRAW_H
35 #define ST_DRAW_H
36
37 struct _mesa_prim;
38 struct _mesa_index_buffer;
39
40 void st_init_draw( struct st_context *st );
41
42 void st_destroy_draw( struct st_context *st );
43
44 extern void
45 st_draw_vbo(GLcontext *ctx,
46 const struct gl_client_array **arrays,
47 const struct _mesa_prim *prims,
48 GLuint nr_prims,
49 const struct _mesa_index_buffer *ib,
50 GLuint min_index,
51 GLuint max_index);
52
53 extern void
54 st_feedback_draw_vbo(GLcontext *ctx,
55 const struct gl_client_array **arrays,
56 const struct _mesa_prim *prims,
57 GLuint nr_prims,
58 const struct _mesa_index_buffer *ib,
59 GLuint min_index,
60 GLuint max_index);
61
62 /* Internal function:
63 */
64 extern GLuint
65 st_pipe_vertex_format(GLenum type, GLuint size, GLenum format,
66 GLboolean normalized);
67
68
69 /**
70 * When drawing with VBOs, the addresses specified with
71 * glVertex/Color/TexCoordPointer() are really offsets into the VBO, not real
72 * addresses. At some point we need to convert those pointers to offsets.
73 * This function is basically a cast wrapper to avoid warnings when building
74 * in 64-bit mode.
75 */
76 static INLINE unsigned
77 pointer_to_offset(const void *ptr)
78 {
79 return (unsigned) (((unsigned long) ptr) & 0xffffffffUL);
80 }
81
82
83 #endif