소스 검색

removed wrong const

Kajetan Johannes Hammerle 4 년 전
부모
커밋
33d0fc4551
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
         }