Sha256: 0711a971594022e9c8221a1e528b6709b871d8259e37f3d50ca605bfcccf922e

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

#ifndef GOSUIMPL_GRAPHICS_TEXCHUNK_HPP
#define GOSUIMPL_GRAPHICS_TEXCHUNK_HPP

#include <Gosu/Fwd.hpp>
#include <Gosu/ImageData.hpp>
#include <Gosu/TR1.hpp>
#include <GosuImpl/Graphics/Common.hpp>
#include <memory>
#include <vector>
#include <stdexcept>

class Gosu::TexChunk : public Gosu::ImageData
{
    Graphics* graphics;
    Transforms* transforms;
    DrawOpQueueStack* queues;
    std::tr1::shared_ptr<Texture> texture;
    int x, y, w, h, padding;
    
    // Cached for faster access.
    GLTexInfo info;
    
public:
    TexChunk(Graphics& graphics, Transforms& transforms, DrawOpQueueStack& queues,
             std::tr1::shared_ptr<Texture> texture, int x, int y, int w, int h, int padding);
    ~TexChunk();

    int width() const
    {
        return w;
    }
    
    int height() const
    {
        return h;
    }
    
    GLuint texName() const
    {
        return info.texName;
    }
    
    void draw(double x1, double y1, Color c1,
        double x2, double y2, Color c2,
        double x3, double y3, Color c3,
        double x4, double y4, Color c4,
        ZPos z, AlphaMode mode) const;
        
    const GLTexInfo* glTexInfo() const;
    Gosu::Bitmap toBitmap() const;
    void insert(const Bitmap& bitmap, int x, int y);
};

#endif

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gosu-0.7.39 GosuImpl/Graphics/TexChunk.hpp