| 293 | GLuint gl_tex; |
| 294 | |
| 295 | constexpr ImageElement() : width(0), height(0), gl_tex(0) {} |
| 296 | |
| 297 | inline bool IsValid() const { |
| 298 | return (this->gl_tex != 0) && (this->width > 0) && (this->height > 0); |
nothing calls this directly
no outgoing calls
no test coverage detected