r600g: pad the DMA CS to a multiple of 8 dwords
[mesa.git] / src / mesa / main / depth.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2007 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 #include "glheader.h"
27 #include "imports.h"
28 #include "context.h"
29 #include "depth.h"
30 #include "enums.h"
31 #include "macros.h"
32 #include "mtypes.h"
33
34
35 /**********************************************************************/
36 /***** API Functions *****/
37 /**********************************************************************/
38
39
40
41 void GLAPIENTRY
42 _mesa_ClearDepth( GLclampd depth )
43 {
44 GET_CURRENT_CONTEXT(ctx);
45
46 if (MESA_VERBOSE & VERBOSE_API)
47 _mesa_debug(ctx, "glClearDepth(%f)\n", depth);
48
49 depth = CLAMP( depth, 0.0, 1.0 );
50
51 if (ctx->Depth.Clear == depth)
52 return;
53
54 FLUSH_VERTICES(ctx, _NEW_DEPTH);
55 ctx->Depth.Clear = depth;
56 }
57
58
59 void GLAPIENTRY
60 _mesa_ClearDepthf( GLclampf depth )
61 {
62 _mesa_ClearDepth(depth);
63 }
64
65
66 void GLAPIENTRY
67 _mesa_DepthFunc( GLenum func )
68 {
69 GET_CURRENT_CONTEXT(ctx);
70
71 if (MESA_VERBOSE & VERBOSE_API)
72 _mesa_debug(ctx, "glDepthFunc %s\n", _mesa_lookup_enum_by_nr(func));
73
74 switch (func) {
75 case GL_LESS: /* (default) pass if incoming z < stored z */
76 case GL_GEQUAL:
77 case GL_LEQUAL:
78 case GL_GREATER:
79 case GL_NOTEQUAL:
80 case GL_EQUAL:
81 case GL_ALWAYS:
82 case GL_NEVER:
83 break;
84 default:
85 _mesa_error( ctx, GL_INVALID_ENUM, "glDepth.Func" );
86 return;
87 }
88
89 if (ctx->Depth.Func == func)
90 return;
91
92 FLUSH_VERTICES(ctx, _NEW_DEPTH);
93 ctx->Depth.Func = func;
94
95 if (ctx->Driver.DepthFunc)
96 ctx->Driver.DepthFunc( ctx, func );
97 }
98
99
100
101 void GLAPIENTRY
102 _mesa_DepthMask( GLboolean flag )
103 {
104 GET_CURRENT_CONTEXT(ctx);
105
106 if (MESA_VERBOSE & VERBOSE_API)
107 _mesa_debug(ctx, "glDepthMask %d\n", flag);
108
109 /*
110 * GL_TRUE indicates depth buffer writing is enabled (default)
111 * GL_FALSE indicates depth buffer writing is disabled
112 */
113 if (ctx->Depth.Mask == flag)
114 return;
115
116 FLUSH_VERTICES(ctx, _NEW_DEPTH);
117 ctx->Depth.Mask = flag;
118
119 if (ctx->Driver.DepthMask)
120 ctx->Driver.DepthMask( ctx, flag );
121 }
122
123
124
125 /**
126 * Specified by the GL_EXT_depth_bounds_test extension.
127 */
128 void GLAPIENTRY
129 _mesa_DepthBoundsEXT( GLclampd zmin, GLclampd zmax )
130 {
131 GET_CURRENT_CONTEXT(ctx);
132
133 if (MESA_VERBOSE & VERBOSE_API)
134 _mesa_debug(ctx, "glDepthBounds(%f, %f)\n", zmin, zmax);
135
136 if (zmin > zmax) {
137 _mesa_error(ctx, GL_INVALID_VALUE, "glDepthBoundsEXT(zmin > zmax)");
138 return;
139 }
140
141 zmin = CLAMP(zmin, 0.0, 1.0);
142 zmax = CLAMP(zmax, 0.0, 1.0);
143
144 if (ctx->Depth.BoundsMin == zmin && ctx->Depth.BoundsMax == zmax)
145 return;
146
147 FLUSH_VERTICES(ctx, _NEW_DEPTH);
148 ctx->Depth.BoundsMin = (GLfloat) zmin;
149 ctx->Depth.BoundsMax = (GLfloat) zmax;
150 }
151
152
153 /**********************************************************************/
154 /***** Initialization *****/
155 /**********************************************************************/
156
157
158 /**
159 * Initialize the depth buffer attribute group in the given context.
160 */
161 void
162 _mesa_init_depth(struct gl_context *ctx)
163 {
164 ctx->Depth.Test = GL_FALSE;
165 ctx->Depth.Clear = 1.0;
166 ctx->Depth.Func = GL_LESS;
167 ctx->Depth.Mask = GL_TRUE;
168 }