315bd33b61da9c01fef9525eda34862f00353d91
[mesa.git] / src / mesa / main / accum.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 5.1
4 *
5 * Copyright (C) 1999-2003 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 #include "glheader.h"
26 #include "accum.h"
27 #include "context.h"
28 #include "imports.h"
29 #include "macros.h"
30 #include "state.h"
31 #include "mtypes.h"
32
33
34 void GLAPIENTRY
35 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
36 {
37 GLfloat tmp[4];
38 GET_CURRENT_CONTEXT(ctx);
39 ASSERT_OUTSIDE_BEGIN_END(ctx);
40
41 tmp[0] = CLAMP( red, -1.0F, 1.0F );
42 tmp[1] = CLAMP( green, -1.0F, 1.0F );
43 tmp[2] = CLAMP( blue, -1.0F, 1.0F );
44 tmp[3] = CLAMP( alpha, -1.0F, 1.0F );
45
46 if (TEST_EQ_4V(tmp, ctx->Accum.ClearColor))
47 return;
48
49 FLUSH_VERTICES(ctx, _NEW_ACCUM);
50 COPY_4FV( ctx->Accum.ClearColor, tmp );
51 }
52
53
54 void GLAPIENTRY
55 _mesa_Accum( GLenum op, GLfloat value )
56 {
57 GET_CURRENT_CONTEXT(ctx);
58 GLuint xpos, ypos, width, height;
59 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
60
61 if (ctx->Visual.accumRedBits == 0 || ctx->DrawBuffer != ctx->ReadBuffer) {
62 _mesa_error(ctx, GL_INVALID_OPERATION, "glAccum");
63 return;
64 }
65
66 if (ctx->NewState)
67 _mesa_update_state( ctx );
68
69 if (ctx->RenderMode != GL_RENDER) {
70 /* no-op */
71 return;
72 }
73
74 /* Determine region to operate upon. */
75 if (ctx->Scissor.Enabled) {
76 xpos = ctx->Scissor.X;
77 ypos = ctx->Scissor.Y;
78 width = ctx->Scissor.Width;
79 height = ctx->Scissor.Height;
80 }
81 else {
82 /* whole window */
83 xpos = 0;
84 ypos = 0;
85 width = ctx->DrawBuffer->Width;
86 height = ctx->DrawBuffer->Height;
87 }
88
89 ctx->Driver.Accum( ctx, op, value, xpos, ypos, width, height );
90 }
91
92 void
93 _mesa_init_accum( GLcontext *ctx )
94 {
95 /* Accumulate buffer group */
96 ASSIGN_4V( ctx->Accum.ClearColor, 0.0, 0.0, 0.0, 0.0 );
97 }