Procházet zdrojové kódy

removed wrong const

Kajetan Johannes Hammerle před 4 roky
rodič
revize
33d0fc4551
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      wrapper/Framebuffer.h

+ 1 - 1
wrapper/Framebuffer.h

@@ -63,7 +63,7 @@ public:
         textures[index].bindTo(textureUnit);
     }
 
-    void resize(const Size& size) const {
+    void resize(const Size& size) {
         for(Texture& t : textures) {
             t.setData(size.width, size.height);
         }