Sha256: 110ce6dc0ed6d5a8528e261f5c18b4d14b097abde3bfcb1acb972df91b0f51fa
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
#ifndef GOSUIMPL_GRAPHICS_COMMON_HPP #define GOSUIMPL_GRAPHICS_COMMON_HPP #include <Gosu/Platform.hpp> #if defined(GOSU_IS_WIN) #include <windows.h> #include <GL/gl.h> #elif defined(GOSU_IS_IPHONE) #include <OpenGLES/ES1/gl.h> #include <OpenGLES/ES1/glext.h> #elif defined(GOSU_IS_MAC) #include <OpenGL/gl.h> #else #include <GL/gl.h> #endif #include <algorithm> #include <vector> namespace Gosu { class Texture; class TexChunk; struct DrawOp; class DrawOpQueue; typedef std::vector<DrawOpQueue> DrawOpQueueStack; class Macro; template<typename T> bool isPToTheLeftOfAB(T xa, T ya, T xb, T yb, T xp, T yp) { return (xb - xa) * (yp - ya) - (xp - xa) * (yb - ya) > 0; } template<typename T, typename C> void reorderCoordinatesIfNecessary(T& x1, T& y1, T& x2, T& y2, T& x3, T& y3, C& c3, T& x4, T& y4, C& c4) { if (isPToTheLeftOfAB(x1, y1, x2, y2, x3, y3) == isPToTheLeftOfAB(x2, y2, x3, y3, x4, y4)) { std::swap(x3, x4); std::swap(y3, y4); std::swap(c3, c4); } } } #endif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gosu-0.7.20 | GosuImpl/Graphics/Common.hpp |
gosu-0.7.19 | GosuImpl/Graphics/Common.hpp |