From 2702c90d7a39fca2a3319c5e915fd290cb31fc70 Mon Sep 17 00:00:00 2001 From: Radosław Kujawa Date: Fri, 17 Jul 2026 14:54:32 +0200 Subject: Initial import. --- src/mesa/swrast/s_logic.c | 497 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 497 insertions(+) create mode 100644 src/mesa/swrast/s_logic.c (limited to 'src/mesa/swrast/s_logic.c') diff --git a/src/mesa/swrast/s_logic.c b/src/mesa/swrast/s_logic.c new file mode 100644 index 0000000..ad27cb7 --- /dev/null +++ b/src/mesa/swrast/s_logic.c @@ -0,0 +1,497 @@ + +/* + * Mesa 3-D graphics library + * Version: 4.1 + * + * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + + +#include "glheader.h" +#include "context.h" +#include "imports.h" +#include "macros.h" + +#include "s_alphabuf.h" +#include "s_context.h" +#include "s_logic.h" +#include "s_span.h" + + + +/* + * Apply logic op to array of CI pixels. + */ +static void +index_logicop( GLcontext *ctx, GLuint n, GLuint index[], const GLuint dest[], + const GLubyte mask[] ) +{ + GLuint i; + switch (ctx->Color.LogicOp) { + case GL_CLEAR: + for (i=0;iend < MAX_WIDTH); + + /* Read dest values from frame buffer */ + if (span->arrayMask & SPAN_XY) { + (*swrast->Driver.ReadCI32Pixels)( ctx, span->end, + span->array->x, span->array->y, + dest, span->array->mask ); + } + else { + (*swrast->Driver.ReadCI32Span)( ctx, span->end, span->x, span->y, dest ); + } + + index_logicop( ctx, span->end, index, dest, span->array->mask ); +} + + + +/* + * Apply logic operator to rgba pixels. + * Input: ctx - the context + * n - number of pixels + * mask - pixel mask array + * In/Out: src - incoming pixels which will be modified + * Input: dest - frame buffer values + * + * Note: Since the R, G, B, and A channels are all treated the same we + * process them as 4-byte GLuints instead of four GLubytes. + */ +static void +rgba_logicop_ui( const GLcontext *ctx, GLuint n, const GLubyte mask[], + GLuint src[], const GLuint dest[] ) +{ + GLuint i; + switch (ctx->Color.LogicOp) { + case GL_CLEAR: + for (i=0;iColor.LogicOp) { + case GL_CLEAR: + for (i=0;iend < MAX_WIDTH); + ASSERT(span->arrayMask & SPAN_RGBA); + + if (span->arrayMask & SPAN_XY) { + (*swrast->Driver.ReadRGBAPixels)(ctx, span->end, + span->array->x, span->array->y, + dest, span->array->mask); + if (SWRAST_CONTEXT(ctx)->_RasterMask & ALPHABUF_BIT) { + _swrast_read_alpha_pixels(ctx, span->end, + span->array->x, span->array->y, + dest, span->array->mask); + } + } + else { + _swrast_read_rgba_span(ctx, ctx->DrawBuffer, span->end, + span->x, span->y, dest); + } + + if (sizeof(GLchan) * 4 == sizeof(GLuint)) { + rgba_logicop_ui(ctx, span->end, span->array->mask, + (GLuint *) rgba, (const GLuint *) dest); + } + else { + rgba_logicop_chan(ctx, 4 * span->end, span->array->mask, + (GLchan *) rgba, (const GLchan *) dest); + } +} -- cgit