Browse Source

(Ahem...) Happy New Year!

vectorfields
Vladimír Vondruš 15 years ago
parent
commit
c7b331d100
  1. 2
      examples/texturedTriangle/TGATexture.cpp
  2. 2
      examples/texturedTriangle/TGATexture.h
  3. 2
      examples/texturedTriangle/TexturedIdentityShader.cpp
  4. 2
      examples/texturedTriangle/TexturedIdentityShader.h
  5. 2
      examples/texturedTriangle/TexturedTriangle.cpp
  6. 2
      examples/texturedTriangle/TexturedTriangle.h
  7. 2
      examples/texturedTriangle/main.cpp
  8. 2
      examples/triangle/IdentityShader.cpp
  9. 2
      examples/triangle/IdentityShader.h
  10. 2
      examples/triangle/Triangle.cpp
  11. 2
      examples/triangle/Triangle.h
  12. 2
      examples/triangle/main.cpp
  13. 2
      src/AbstractShaderProgram.cpp
  14. 2
      src/AbstractShaderProgram.h
  15. 2
      src/Buffer.h
  16. 2
      src/Camera.cpp
  17. 2
      src/Camera.h
  18. 2
      src/IndexedMesh.cpp
  19. 2
      src/IndexedMesh.h
  20. 2
      src/Light.h
  21. 2
      src/Magnum.h
  22. 2
      src/Math/Matrix.h
  23. 2
      src/Math/Matrix3.h
  24. 2
      src/Math/Matrix4.h
  25. 2
      src/Math/Test/Matrix4Test.cpp
  26. 2
      src/Math/Test/Matrix4Test.h
  27. 2
      src/Math/Test/MatrixTest.cpp
  28. 2
      src/Math/Test/MatrixTest.h
  29. 2
      src/Math/Test/Vector3Test.cpp
  30. 2
      src/Math/Test/Vector3Test.h
  31. 2
      src/Math/Test/Vector4Test.cpp
  32. 2
      src/Math/Test/Vector4Test.h
  33. 2
      src/Math/Test/VectorTest.cpp
  34. 2
      src/Math/Test/VectorTest.h
  35. 2
      src/Math/Vector.h
  36. 2
      src/Math/Vector2.h
  37. 2
      src/Math/Vector3.h
  38. 2
      src/Math/Vector4.h
  39. 2
      src/Math/constants.h
  40. 2
      src/Mesh.cpp
  41. 2
      src/Mesh.h
  42. 2
      src/MeshBuilder.h
  43. 2
      src/Object.cpp
  44. 2
      src/Object.h
  45. 2
      src/Scene.cpp
  46. 2
      src/Scene.h
  47. 2
      src/Shader.cpp
  48. 2
      src/Shader.h
  49. 2
      src/Test/CameraTest.cpp
  50. 2
      src/Test/CameraTest.h
  51. 2
      src/Test/ObjectTest.cpp
  52. 2
      src/Test/ObjectTest.h
  53. 2
      src/Test/SceneTest.cpp
  54. 2
      src/Test/SceneTest.h
  55. 2
      src/Texture.h

2
examples/texturedTriangle/TGATexture.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/texturedTriangle/TGATexture.h

@ -1,7 +1,7 @@
#ifndef Magnum_Examples_TGATexture_h #ifndef Magnum_Examples_TGATexture_h
#define Magnum_Examples_TGATexture_h #define Magnum_Examples_TGATexture_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/texturedTriangle/TexturedIdentityShader.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/texturedTriangle/TexturedIdentityShader.h

@ -1,7 +1,7 @@
#ifndef Magnum_Examples_TexturedIdentityShader_h #ifndef Magnum_Examples_TexturedIdentityShader_h
#define Magnum_Examples_TexturedIdentityShader_h #define Magnum_Examples_TexturedIdentityShader_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/texturedTriangle/TexturedTriangle.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/texturedTriangle/TexturedTriangle.h

@ -1,7 +1,7 @@
#ifndef Magnum_Examples_TexturedTriangle_h #ifndef Magnum_Examples_TexturedTriangle_h
#define Magnum_Examples_TexturedTriangle_h #define Magnum_Examples_TexturedTriangle_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/texturedTriangle/main.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/triangle/IdentityShader.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/triangle/IdentityShader.h

@ -1,7 +1,7 @@
#ifndef Magnum_Examples_IdentityShader_h #ifndef Magnum_Examples_IdentityShader_h
#define Magnum_Examples_IdentityShader_h #define Magnum_Examples_IdentityShader_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/triangle/Triangle.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/triangle/Triangle.h

@ -1,7 +1,7 @@
#ifndef Magnum_Examples_Triangle_h #ifndef Magnum_Examples_Triangle_h
#define Magnum_Examples_Triangle_h #define Magnum_Examples_Triangle_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
examples/triangle/main.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/AbstractShaderProgram.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/AbstractShaderProgram.h

@ -1,7 +1,7 @@
#ifndef Magnum_AbstractShaderProgram_h #ifndef Magnum_AbstractShaderProgram_h
#define Magnum_AbstractShaderProgram_h #define Magnum_AbstractShaderProgram_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Buffer.h

@ -1,7 +1,7 @@
#ifndef Magnum_Buffer_h #ifndef Magnum_Buffer_h
#define Magnum_Buffer_h #define Magnum_Buffer_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Camera.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Camera.h

@ -1,7 +1,7 @@
#ifndef Magnum_Camera_h #ifndef Magnum_Camera_h
#define Magnum_Camera_h #define Magnum_Camera_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/IndexedMesh.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/IndexedMesh.h

@ -1,7 +1,7 @@
#ifndef Magnum_IndexedMesh_h #ifndef Magnum_IndexedMesh_h
#define Magnum_IndexedMesh_h #define Magnum_IndexedMesh_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Light.h

@ -1,7 +1,7 @@
#ifndef Magnum_Light_h #ifndef Magnum_Light_h
#define Magnum_Light_h #define Magnum_Light_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Magnum.h

@ -1,7 +1,7 @@
#ifndef Magnum_Magnum_h #ifndef Magnum_Magnum_h
#define Magnum_Magnum_h #define Magnum_Magnum_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Matrix.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Matrix_h #ifndef Magnum_Math_Matrix_h
#define Magnum_Math_Matrix_h #define Magnum_Math_Matrix_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Matrix3.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Matrix3_h #ifndef Magnum_Math_Matrix3_h
#define Magnum_Math_Matrix3_h #define Magnum_Math_Matrix3_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Matrix4.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Matrix4_h #ifndef Magnum_Math_Matrix4_h
#define Magnum_Math_Matrix4_h #define Magnum_Math_Matrix4_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/Matrix4Test.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/Matrix4Test.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Test_Matrix4Test_h #ifndef Magnum_Math_Test_Matrix4Test_h
#define Magnum_Math_Test_Matrix4Test_h #define Magnum_Math_Test_Matrix4Test_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/MatrixTest.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/MatrixTest.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Test_MatrixTest_h #ifndef Magnum_Math_Test_MatrixTest_h
#define Magnum_Math_Test_MatrixTest_h #define Magnum_Math_Test_MatrixTest_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/Vector3Test.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/Vector3Test.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Test_Vector3Test_h #ifndef Magnum_Math_Test_Vector3Test_h
#define Magnum_Math_Test_Vector3Test_h #define Magnum_Math_Test_Vector3Test_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/Vector4Test.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/Vector4Test.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Test_Vector4Test_h #ifndef Magnum_Math_Test_Vector4Test_h
#define Magnum_Math_Test_Vector4Test_h #define Magnum_Math_Test_Vector4Test_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/VectorTest.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Test/VectorTest.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Test_VectorTest_h #ifndef Magnum_Math_Test_VectorTest_h
#define Magnum_Math_Test_VectorTest_h #define Magnum_Math_Test_VectorTest_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Vector.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Vector_h #ifndef Magnum_Math_Vector_h
#define Magnum_Math_Vector_h #define Magnum_Math_Vector_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Vector2.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Vector2_h #ifndef Magnum_Math_Vector2_h
#define Magnum_Math_Vector2_h #define Magnum_Math_Vector2_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Vector3.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Vector3_h #ifndef Magnum_Math_Vector3_h
#define Magnum_Math_Vector3_h #define Magnum_Math_Vector3_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/Vector4.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_Vector4_h #ifndef Magnum_Math_Vector4_h
#define Magnum_Math_Vector4_h #define Magnum_Math_Vector4_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Math/constants.h

@ -1,7 +1,7 @@
#ifndef Magnum_Math_constants_h #ifndef Magnum_Math_constants_h
#define Magnum_Math_constants_h #define Magnum_Math_constants_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Mesh.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Mesh.h

@ -1,7 +1,7 @@
#ifndef Magnum_Mesh_h #ifndef Magnum_Mesh_h
#define Magnum_Mesh_h #define Magnum_Mesh_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/MeshBuilder.h

@ -1,7 +1,7 @@
#ifndef Magnum_MeshBuilder_h #ifndef Magnum_MeshBuilder_h
#define Magnum_MeshBuilder_h #define Magnum_MeshBuilder_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Object.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Object.h

@ -1,7 +1,7 @@
#ifndef Magnum_Object_h #ifndef Magnum_Object_h
#define Magnum_Object_h #define Magnum_Object_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Scene.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Scene.h

@ -1,7 +1,7 @@
#ifndef Magnum_Scene_h #ifndef Magnum_Scene_h
#define Magnum_Scene_h #define Magnum_Scene_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Shader.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Shader.h

@ -1,7 +1,7 @@
#ifndef Magnum_Shader_h #ifndef Magnum_Shader_h
#define Magnum_Shader_h #define Magnum_Shader_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Test/CameraTest.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Test/CameraTest.h

@ -1,7 +1,7 @@
#ifndef Magnum_Test_CameraTest_h #ifndef Magnum_Test_CameraTest_h
#define Magnum_Test_CameraTest_h #define Magnum_Test_CameraTest_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Test/ObjectTest.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Test/ObjectTest.h

@ -1,7 +1,7 @@
#ifndef Magnum_Test_ObjectTest_h #ifndef Magnum_Test_ObjectTest_h
#define Magnum_Test_ObjectTest_h #define Magnum_Test_ObjectTest_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Test/SceneTest.cpp

@ -1,5 +1,5 @@
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Test/SceneTest.h

@ -1,7 +1,7 @@
#ifndef Magnum_Test_SceneTest_h #ifndef Magnum_Test_SceneTest_h
#define Magnum_Test_SceneTest_h #define Magnum_Test_SceneTest_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

2
src/Texture.h

@ -1,7 +1,7 @@
#ifndef Magnum_Texture_h #ifndef Magnum_Texture_h
#define Magnum_Texture_h #define Magnum_Texture_h
/* /*
Copyright © 2010 Vladimír Vondruš <mosra@centrum.cz> Copyright © 2010, 2011 Vladimír Vondruš <mosra@centrum.cz>
This file is part of Magnum. This file is part of Magnum.

Loading…
Cancel
Save