X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Flight.h;h=31dc3c0db709285c7f918820752b9c668d2ddcbf;hp=e9b032694565e7e857e32fada5d84a0d70013505;hb=HEAD;hpb=efe80f5a696b4a3be2378dc6d635c89676afa12d diff --git a/source/light.h b/source/light.h deleted file mode 100644 index e9b03269..00000000 --- a/source/light.h +++ /dev/null @@ -1,48 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_LIGHT_H_ -#define MSP_GL_LIGHT_H_ - -#include -#include "color.h" - -namespace Msp { -namespace GL { - -class Light -{ -private: - Color ambient; - Color diffuse; - Color specular; - float x, y, z, w; - float sdx, sdy, sdz; - float spot_exp; - float spot_cutoff; - float attenuation[3]; - - static unsigned current_unit; - static std::vector current_lights; - -public: - Light(); - void set_ambient(const Color &c); - void set_diffuse(const Color &c); - void set_specular(const Color &c); - void set_position(float, float, float, float); - void bind() const; - void bind_to(unsigned) const; - - static void activate(unsigned); - static void unbind(); -}; - -} // namespace GL -} // namespace Msp - -#endif