mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 17:58:26 +02:00
Correct GL_EQUIV code in r67/7xx.
From 247e121106e8d3e389f2e5a6edf13ea70ac18df7 Mon Sep 17 00:00:00 2001 These seem to be documented in <http://www.svgopen.org/2003/papers/RasterOperationsUsingFilterElements/index.html>.
This commit is contained in:
parent
93e77b0028
commit
c9c54180e4
1 changed files with 1 additions and 1 deletions
|
|
@ -616,7 +616,7 @@ static GLuint translate_logicop(GLenum logicop)
|
|||
case GL_XOR:
|
||||
return 0x66;
|
||||
case GL_EQUIV:
|
||||
return 0xaa;
|
||||
return 0x99;
|
||||
case GL_AND_REVERSE:
|
||||
return 0x44;
|
||||
case GL_AND_INVERTED:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue