| 298 | } |
| 299 | |
| 300 | void Program::getResource(gl::GLenum programInterface, gl::GLuint index, gl::GLsizei propCount, const gl::GLenum * props, gl::GLsizei bufSize, gl::GLsizei * length, gl::GLint * params) const |
| 301 | { |
| 302 | checkDirty(); |
| 303 | |
| 304 | glGetProgramResourceiv(id(), programInterface, index, propCount, props, bufSize, length, params); |
| 305 | } |
| 306 | |
| 307 | gl::GLint Program::getResourceLocation(gl::GLenum programInterface, const std::string & name) const |
| 308 | { |