dri/nouveau: Add GL_EXT_stencil_wrap for nv04.

Signed-off-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
Andrew Randrianasulu 2010-03-01 23:58:17 +00:00 committed by Francisco Jerez
parent 9c21c1e865
commit 210bcf6d15
1 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,10 @@ get_stencil_op(unsigned op)
return 0x5;
case GL_INVERT:
return 0x6;
case GL_INCR_WRAP:
return 0x7;
case GL_DECR_WRAP:
return 0x8;
default:
assert(0);
}