| 174 | } |
| 175 | |
| 176 | void AbstractState::scissor(const GLint x, const GLint y, const GLsizei width, const GLsizei height) |
| 177 | { |
| 178 | add(new StateSetting(glScissor, x, y, width, height)); |
| 179 | } |
| 180 | |
| 181 | void AbstractState::scissor(const std::array<GLint, 4> & scissorBox) |
| 182 | { |