From c4c639c9a46967678725370cb9824031a068633c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 7 Sep 2000 15:45:26 +0000 Subject: Removed ctx->Driver.LogicOp(). ctx->Driver.Index/ColorMask() now return void. Removed SWmasking and SWLogicOpEnabled variables. LogicOps and color/index masking are no longer special-case device driver functions. The Xlib driver was the only driver that used them. Things are more uniform now. --- src/mesa/drivers/windows/wmesa_stereo.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/mesa/drivers/windows/wmesa_stereo.c') diff --git a/src/mesa/drivers/windows/wmesa_stereo.c b/src/mesa/drivers/windows/wmesa_stereo.c index ea721a13b6..fe3c315bd9 100644 --- a/src/mesa/drivers/windows/wmesa_stereo.c +++ b/src/mesa/drivers/windows/wmesa_stereo.c @@ -299,18 +299,6 @@ static GLboolean color_mask( GLcontext* ctx, -/* - * Set the pixel logic operation. Return GL_TRUE if the device driver - * can perform the operation, otherwise return GL_FALSE. If GL_FALSE - * is returned, the logic op will be done in software by Mesa. - */ -GLboolean logicop( GLcontext* ctx, GLenum op ) -{ - /* can't implement */ - return GL_FALSE; -} - - static void dither( GLcontext* ctx, GLboolean enable ) { /* No op */ @@ -1046,7 +1034,6 @@ void setup_DD_pointers( GLcontext* ctx ) ctx->Driver.IndexMask = index_mask; ctx->Driver.ColorMask = color_mask; - ctx->Driver.LogicOp = logicop; ctx->Driver.Dither = dither; ctx->Driver.SetBuffer = set_buffer; -- cgit v1.2.3