Pops the last entry off the state stack into the current states
| 867 | |
| 868 | //! Pops the last entry off the state stack into the current states |
| 869 | void ILAPIENTRY ilPopAttrib() |
| 870 | { |
| 871 | if (ilCurrentPos <= 0) { |
| 872 | ilCurrentPos = 0; |
| 873 | ilSetError(IL_STACK_UNDERFLOW); |
| 874 | return; |
| 875 | } |
| 876 | |
| 877 | // Should we check here to see if ilCurrentPos is too large? |
| 878 | ilCurrentPos--; |
| 879 | |
| 880 | return; |
| 881 | } |
| 882 | |
| 883 | |
| 884 | //! Specifies implementation-dependent performance hints |
nothing calls this directly
no test coverage detected