-/* $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
/*
* $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
*
-/*
-* 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)
ctx->Driver.IndexMask = index_mask;
ctx->Driver.ColorMask = color_mask;
- ctx->Driver.LogicOp = logicop;
ctx->Driver.Dither = dither;
ctx->Driver.SetBuffer = set_buffer;