소스 검색

deleted some undefined functions

naelstrof 7 년 전
부모
커밋
33133e0938
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0
    2
      src/shader.hpp

+ 0
- 2
src/shader.hpp 파일 보기

@@ -48,8 +48,6 @@ public:
48 48
     void            setParameter( std::string name, glm::vec2 foo );
49 49
     void            setAttribute( std::string name, unsigned int buffer, unsigned int stepsize );
50 50
 private:
51
-    void loadFromFile( std::string vert, std::string frag );
52
-    void loadFromMemory( std::string vert, std::string frag );
53 51
     std::vector<unsigned int>   activeAttributes;
54 52
     unsigned int                getUniformLocation( std::string );
55 53
     int                         compile( unsigned int shader, std::string& error );