]> Dogcows Code - chaz/yoink/blobdiff - src/moof/sprite.cc
remove some unused stlplus modules
[chaz/yoink] / src / moof / sprite.cc
index ee5db1dd302023072a93b7d0b534be37dd3da4e7..b71a4b99ee8a860393047a4bc15eb0a27dd49251 100644 (file)
@@ -1,13 +1,11 @@
 
-/*]  Copyright (c) 2009-2010, Charles McGarvey  [**************************
+/*]  Copyright (c) 2009-2011, Charles McGarvey  [*****************************
 **]  All rights reserved.
 *
-* vi:ts=4 sw=4 tw=75
-*
 * Distributable under the terms and conditions of the 2-clause BSD license;
 * see the file COPYING for a complete text of the license.
 *
-**************************************************************************/
+*****************************************************************************/
 
 #include <cstdio>              // FILE
 #include <cstring>             // strncmp
@@ -44,7 +42,6 @@ sprite::sprite(const sprite& sprite, int tile)
        image_ = sprite.image_;
 }
 
-
 void sprite::image(const std::string& name)
 {
        image_ = resource::load(name, "png");
@@ -55,7 +52,6 @@ void sprite::tile(int tile)
        if (image_) image_->tile_coordinates(tile, tile_);
 }
 
-
 void sprite::bind() const
 {
        if (image_) image_->bind();
@@ -66,7 +62,6 @@ void sprite::reset_binding()
        image::reset_binding();
 }
 
-
 void sprite::draw(const vector3 vertices[4]) const
 {
        bind();
@@ -77,7 +72,6 @@ void sprite::draw(const vector3 vertices[4]) const
        glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
 }
 
-
 /*
        void min_filter(GLuint filter)
        {
@@ -107,7 +101,6 @@ void sprite::draw(const vector3 vertices[4]) const
                glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, mWrapT);
        }
 
-
 bool sprite::tile_coordinates(int index, scalar coords[8],
                orientation orientation) const
 {
This page took 0.019768 seconds and 4 git commands to generate.