Merge commit 'origin/master' into drm-gem
[mesa.git] / src / mesa / drivers / dri / swrast / swrast_priv.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /*
26 * Authors:
27 * George Sapountzis <gsap7@yahoo.gr>
28 */
29
30
31 #ifndef _SWRAST_PRIV_H
32 #define _SWRAST_PRIV_H
33
34 #include <GL/gl.h>
35 #include <GL/internal/dri_interface.h>
36 #include "mtypes.h"
37
38
39 /**
40 * Debugging
41 */
42 #define DEBUG_CORE 0
43 #define DEBUG_SPAN 0
44
45 #if DEBUG_CORE
46 #define TRACE _mesa_printf("--> %s\n", __FUNCTION__)
47 #else
48 #define TRACE
49 #endif
50
51 #if DEBUG_SPAN
52 #define TRACE_SPAN _mesa_printf("--> %s\n", __FUNCTION__)
53 #else
54 #define TRACE_SPAN
55 #endif
56
57
58 /**
59 * Data types
60 */
61 struct __DRIscreenRec {
62 int num;
63
64 const __DRIextension **extensions;
65
66 const __DRIswrastLoaderExtension *swrast_loader;
67 };
68
69 struct __DRIcontextRec {
70 GLcontext Base;
71
72 void *loaderPrivate;
73
74 __DRIscreen *driScreenPriv;
75 };
76
77 struct __DRIdrawableRec {
78 GLframebuffer Base;
79
80 void *loaderPrivate;
81
82 __DRIscreen *driScreenPriv;
83
84 /* scratch row for optimized front-buffer rendering */
85 char *row;
86 };
87
88 struct swrast_renderbuffer {
89 struct gl_renderbuffer Base;
90
91 /* renderbuffer pitch (in bytes) */
92 GLuint pitch;
93 };
94
95 static inline __DRIcontext *
96 swrast_context(GLcontext *ctx)
97 {
98 return (__DRIcontext *) ctx;
99 }
100
101 static inline __DRIdrawable *
102 swrast_drawable(GLframebuffer *fb)
103 {
104 return (__DRIdrawable *) fb;
105 }
106
107 static inline struct swrast_renderbuffer *
108 swrast_renderbuffer(struct gl_renderbuffer *rb)
109 {
110 return (struct swrast_renderbuffer *) rb;
111 }
112
113
114 /**
115 * Pixel formats we support
116 */
117 #define PF_CI8 1 /**< Color Index mode */
118 #define PF_A8R8G8B8 2 /**< 32-bit TrueColor: 8-A, 8-R, 8-G, 8-B bits */
119 #define PF_R5G6B5 3 /**< 16-bit TrueColor: 5-R, 6-G, 5-B bits */
120 #define PF_R3G3B2 4 /**< 8-bit TrueColor: 3-R, 3-G, 2-B bits */
121
122
123 /**
124 * Renderbuffer pitch alignment (in bits).
125 *
126 * The xorg loader requires padding images to 32 bits. However, this should
127 * become a screen/drawable parameter XXX
128 */
129 #define PITCH_ALIGN_BITS 32
130
131
132 /* swrast_span.c */
133
134 extern void
135 swrast_set_span_funcs_back(struct swrast_renderbuffer *xrb,
136 GLuint pixel_format);
137
138 extern void
139 swrast_set_span_funcs_front(struct swrast_renderbuffer *xrb,
140 GLuint pixel_format);
141
142 #endif /* _SWRAST_PRIV_H_ */