From: Brian Paul Date: Fri, 3 Mar 2000 23:21:57 +0000 (+0000) Subject: removed obsolete logicop function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0223baaf578598454a36cfdfd7fbeff3358f40ce;p=mesa.git removed obsolete logicop function --- diff --git a/src/mesa/drivers/windows/wmesa.c b/src/mesa/drivers/windows/wmesa.c index 3e4e1359ce8..a08873ddeda 100644 --- a/src/mesa/drivers/windows/wmesa.c +++ b/src/mesa/drivers/windows/wmesa.c @@ -1,4 +1,4 @@ -/* $Id: wmesa.c,v 1.2 2000/02/17 20:52:02 brianp Exp $ */ +/* $Id: wmesa.c,v 1.3 2000/03/03 23:21:57 brianp Exp $ */ /* * File name : wmesa.c @@ -22,6 +22,9 @@ /* * $Log: wmesa.c,v $ + * Revision 1.3 2000/03/03 23:21:57 brianp + * removed obsolete logicop function + * * Revision 1.2 2000/02/17 20:52:02 brianp * replaced renderer_string() with get_string() func * @@ -574,18 +577,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 ) { if (!Current) @@ -1183,7 +1174,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;