| 13 | |
| 14 | |
| 15 | AttachedTexture::AttachedTexture(Framebuffer * fbo, const GLenum attachment, Texture * texture, GLint level, GLint layer) |
| 16 | : FramebufferAttachment(fbo, attachment) |
| 17 | , m_texture(texture) |
| 18 | , m_level(level) |
| 19 | , m_layer(layer) |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | bool AttachedTexture::isTextureAttachment() const |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected