X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fmoof%2Fsprite.cc;fp=src%2Fmoof%2Fsprite.cc;h=b71a4b99ee8a860393047a4bc15eb0a27dd49251;hp=ee5db1dd302023072a93b7d0b534be37dd3da4e7;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hpb=6c9943707d4f33035830eba0587a61a34eaecbc2 diff --git a/src/moof/sprite.cc b/src/moof/sprite.cc index ee5db1d..b71a4b9 100644 --- a/src/moof/sprite.cc +++ b/src/moof/sprite.cc @@ -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 // FILE #include // 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 {