1 /* 2 * Shader.hpp 3 * 4 * Created on: Jun 29, 2008 5 * Author: pete 6 */ 7 8 #ifndef SHADER_HPP_ 9 #define SHADER_HPP_ 10 11 #include <string> 12 #include <map> 13 #include "Texture.hpp" 14 15 class Shader 16 { 17 public: 18 19 std::map<std::string, TextureSamplerDesc> textures; 20 21 std::string programSource; 22 std::string presetPath; 23 24 Shader(); 25 }; 26 27 #endif /* SHADER_HPP_ */ 28