]> git.tdb.fi Git - libs/gl.git/blobdiff - source/rendertarget.h
Remove the deprecated ProgramBuilder class
[libs/gl.git] / source / rendertarget.h
index 35b2f00d205877b57bad08147a1058f8ae9d6a63..7d796a3cefe80540a409f5e6b80a6535aefa87f0 100644 (file)
@@ -63,6 +63,7 @@ private:
        Framebuffer fbo;
 
 public:
+       RenderTarget(unsigned, unsigned, RenderOutput);
        RenderTarget(unsigned, unsigned, const RenderTargetFormat & = (RENDER_COLOR, RENDER_DEPTH));
        RenderTarget(unsigned, unsigned, unsigned, const RenderTargetFormat & = (RENDER_COLOR, RENDER_DEPTH));
 private:
@@ -72,6 +73,8 @@ private:
 public:
        ~RenderTarget();
 
+       unsigned get_width() const { return width; }
+       unsigned get_height() const { return height; }
        const RenderTargetFormat &get_format() const { return format; }
        Framebuffer &get_framebuffer() { return fbo; }
        void set_texture_filter(TextureFilter);