mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
removed obsolete logicop function
This commit is contained in:
parent
1b6592aae7
commit
0223baaf57
1 changed files with 4 additions and 14 deletions
|
|
@ -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
|
* File name : wmesa.c
|
||||||
|
|
@ -22,6 +22,9 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: wmesa.c,v $
|
* $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
|
* Revision 1.2 2000/02/17 20:52:02 brianp
|
||||||
* replaced renderer_string() with get_string() func
|
* 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 )
|
static void dither( GLcontext* ctx, GLboolean enable )
|
||||||
{
|
{
|
||||||
if (!Current)
|
if (!Current)
|
||||||
|
|
@ -1183,7 +1174,6 @@ void setup_DD_pointers( GLcontext* ctx )
|
||||||
ctx->Driver.IndexMask = index_mask;
|
ctx->Driver.IndexMask = index_mask;
|
||||||
ctx->Driver.ColorMask = color_mask;
|
ctx->Driver.ColorMask = color_mask;
|
||||||
|
|
||||||
ctx->Driver.LogicOp = logicop;
|
|
||||||
ctx->Driver.Dither = dither;
|
ctx->Driver.Dither = dither;
|
||||||
|
|
||||||
ctx->Driver.SetBuffer = set_buffer;
|
ctx->Driver.SetBuffer = set_buffer;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue