wined3d: Move the scissor rect to the misc states.

This commit is contained in:
Stefan Dösinger 2008-07-02 12:12:00 -05:00 committed by Alexandre Julliard
parent 3668f7508f
commit 298c953b25
1 changed files with 2 additions and 1 deletions

View File

@ -4852,7 +4852,7 @@ const struct StateEntry FFPStateTable[] =
{ /* , STATE_ACTIVELIGHT(6) */ STATE_ACTIVELIGHT(6), light },
{ /* , STATE_ACTIVELIGHT(7) */ STATE_ACTIVELIGHT(7), light },
{ /* Scissor rect */ STATE_SCISSORRECT, scissorrect },
{ /* Scissor rect */ STATE_SCISSORRECT, NULL },
/* Clip planes */
{ /* STATE_CLIPPLANE(0) */ STATE_CLIPPLANE(0), NULL },
{ /* STATE_CLIPPLANE(1) */ STATE_CLIPPLANE(1), NULL },
@ -4905,6 +4905,7 @@ const struct StateEntryTemplate misc_state_template[] = {
{ STATE_STREAMSRC, { STATE_VDECL, streamsrc }},
{ STATE_VDECL, { STATE_VDECL, streamsrc }},
{ STATE_FRONTFACE, { STATE_FRONTFACE, frontface }},
{ STATE_SCISSORRECT, { STATE_SCISSORRECT, scissorrect }},
{0 /* Terminate */, { 0, 0 }},
};