]> git.cworth.org Git - apitrace/blobdiff - gui/apisurface.cpp
Show the currently bound fbos in the gui.
[apitrace] / gui / apisurface.cpp
index 32ebff2853452144fc5ade36ce5373a20e33afe3..8c985ae282a0b2321484705c8c054bdfa40ef5f6 100644 (file)
@@ -114,3 +114,18 @@ void ApiTexture::setLevel(int l)
 {
     m_level = l;
 }
+
+ApiFramebuffer::ApiFramebuffer()
+    : ApiSurface()
+{
+}
+
+QString ApiFramebuffer::type() const
+{
+    return m_type;
+}
+
+void ApiFramebuffer::setType(const QString &str)
+{
+    m_type = str;
+}