jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
Brian Paul | 78b3b66 | 2005-09-27 15:52:27 +0000 | [diff] [blame] | 3 | * Version: 6.5 |
Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 4 | * |
Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. |
Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 6 | * |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 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: |
Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 13 | * |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 14 | * The above copyright notice and this permission notice shall be included |
| 15 | * in all copies or substantial portions of the Software. |
Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 16 | * |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 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 | |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 25 | #include "glheader.h" |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 26 | #include "accum.h" |
| 27 | #include "context.h" |
Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 28 | #include "imports.h" |
Brian Paul | ebb248a | 2000-10-29 18:23:16 +0000 | [diff] [blame] | 29 | #include "macros.h" |
Brian Paul | ea39f04 | 2000-02-02 19:17:57 +0000 | [diff] [blame] | 30 | #include "state.h" |
Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 31 | #include "mtypes.h" |
Chia-I Wu | 2cf4439 | 2010-02-24 12:01:14 +0800 | [diff] [blame] | 32 | #include "main/dispatch.h" |
Chia-I Wu | a833ff0 | 2009-09-07 17:51:42 +0800 | [diff] [blame] | 33 | |
| 34 | |
| 35 | #if FEATURE_accum |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 36 | |
| 37 | |
Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 38 | void GLAPIENTRY |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 39 | _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 40 | { |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 41 | GLfloat tmp[4]; |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 42 | GET_CURRENT_CONTEXT(ctx); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 43 | ASSERT_OUTSIDE_BEGIN_END(ctx); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 44 | |
Brian Paul | 7c27632 | 2001-09-14 21:36:43 +0000 | [diff] [blame] | 45 | tmp[0] = CLAMP( red, -1.0F, 1.0F ); |
| 46 | tmp[1] = CLAMP( green, -1.0F, 1.0F ); |
| 47 | tmp[2] = CLAMP( blue, -1.0F, 1.0F ); |
| 48 | tmp[3] = CLAMP( alpha, -1.0F, 1.0F ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 49 | |
| 50 | if (TEST_EQ_4V(tmp, ctx->Accum.ClearColor)) |
| 51 | return; |
| 52 | |
| 53 | FLUSH_VERTICES(ctx, _NEW_ACCUM); |
| 54 | COPY_4FV( ctx->Accum.ClearColor, tmp ); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Brian Paul | 3a0e0b2 | 2003-11-13 22:16:45 +0000 | [diff] [blame] | 57 | |
Chia-I Wu | a833ff0 | 2009-09-07 17:51:42 +0800 | [diff] [blame] | 58 | static void GLAPIENTRY |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 59 | _mesa_Accum( GLenum op, GLfloat value ) |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 60 | { |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 61 | GET_CURRENT_CONTEXT(ctx); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 62 | ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 63 | |
Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 64 | switch (op) { |
| 65 | case GL_ADD: |
| 66 | case GL_MULT: |
| 67 | case GL_ACCUM: |
| 68 | case GL_LOAD: |
| 69 | case GL_RETURN: |
| 70 | /* OK */ |
| 71 | break; |
| 72 | default: |
| 73 | _mesa_error(ctx, GL_INVALID_ENUM, "glAccum(op)"); |
| 74 | return; |
| 75 | } |
| 76 | |
Brian Paul | b4269c0 | 2005-10-08 21:36:38 +0000 | [diff] [blame] | 77 | if (ctx->DrawBuffer->Visual.haveAccumBuffer == 0) { |
Brian Paul | dbd0fa9 | 2005-09-27 16:10:49 +0000 | [diff] [blame] | 78 | _mesa_error(ctx, GL_INVALID_OPERATION, "glAccum(no accum buffer)"); |
| 79 | return; |
| 80 | } |
| 81 | |
Brian Paul | 78b3b66 | 2005-09-27 15:52:27 +0000 | [diff] [blame] | 82 | if (ctx->DrawBuffer != ctx->ReadBuffer) { |
Brian Paul | 9b8059e | 2006-03-01 02:09:40 +0000 | [diff] [blame] | 83 | /* See GLX_SGI_make_current_read or WGL_ARB_make_current_read, |
| 84 | * or GL_EXT_framebuffer_blit. |
| 85 | */ |
Brian Paul | 78b3b66 | 2005-09-27 15:52:27 +0000 | [diff] [blame] | 86 | _mesa_error(ctx, GL_INVALID_OPERATION, |
| 87 | "glAccum(different read/draw buffers)"); |
| 88 | return; |
| 89 | } |
| 90 | |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 91 | if (ctx->NewState) |
Brian Paul | d95000d | 2005-09-28 15:46:46 +0000 | [diff] [blame] | 92 | _mesa_update_state(ctx); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 93 | |
Brian Paul | d95000d | 2005-09-28 15:46:46 +0000 | [diff] [blame] | 94 | if (ctx->DrawBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) { |
| 95 | _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT, |
| 96 | "glAccum(incomplete framebuffer)"); |
Brian Paul | 3a0e0b2 | 2003-11-13 22:16:45 +0000 | [diff] [blame] | 97 | return; |
| 98 | } |
| 99 | |
Brian Paul | d95000d | 2005-09-28 15:46:46 +0000 | [diff] [blame] | 100 | if (ctx->RenderMode == GL_RENDER) { |
Brian Paul | ccb64bb | 2006-10-18 18:35:09 +0000 | [diff] [blame] | 101 | ctx->Driver.Accum(ctx, op, value); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 102 | } |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 103 | } |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 104 | |
Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 105 | |
Chia-I Wu | a833ff0 | 2009-09-07 17:51:42 +0800 | [diff] [blame] | 106 | void |
| 107 | _mesa_init_accum_dispatch(struct _glapi_table *disp) |
| 108 | { |
| 109 | SET_Accum(disp, _mesa_Accum); |
| 110 | SET_ClearAccum(disp, _mesa_ClearAccum); |
| 111 | } |
| 112 | |
| 113 | |
| 114 | #endif /* FEATURE_accum */ |
| 115 | |
Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 116 | |
Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 117 | void |
| 118 | _mesa_init_accum( GLcontext *ctx ) |
| 119 | { |
| 120 | /* Accumulate buffer group */ |
| 121 | ASSIGN_4V( ctx->Accum.ClearColor, 0.0, 0.0, 0.0, 0.0 ); |
| 122 | } |