| 113 | } |
| 114 | |
| 115 | bool ProgramPipeline::checkUseStatus() const |
| 116 | { |
| 117 | validate(); |
| 118 | |
| 119 | if (!isValid()) |
| 120 | { |
| 121 | critical() << "Use error:" << std::endl << infoLog(); |
| 122 | |
| 123 | return false; |
| 124 | } |
| 125 | |
| 126 | return true; |
| 127 | } |
| 128 | |
| 129 | gl::GLint ProgramPipeline::get(const gl::GLenum pname) const |
| 130 | { |
nothing calls this directly
no test coverage detected