summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-03-03 23:21:57 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-03-03 23:21:57 +0000
commit0223baaf578598454a36cfdfd7fbeff3358f40ce (patch)
tree433a29d624e00d0568c36ff74acba95074d25cc8 /src
parent1b6592aae72e7974a16437c64f90152e83917450 (diff)
removed obsolete logicop function
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/windows/wmesa.c18
1 files changed, 4 insertions, 14 deletions
diff --git a/src/mesa/drivers/windows/wmesa.c b/src/mesa/drivers/windows/wmesa.c
index 3e4e1359ce..a08873dded 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;