Remove unused libprojectM/Renderer/RenderContext.* files

Used class RenderContext is now defined in Renderable.*
This commit is contained in:
Friedrich W. H. Kossebau
2019-01-19 12:11:13 +01:00
parent 56e03259b5
commit 1cf7eaa4c8
2 changed files with 0 additions and 29 deletions

View File

@ -1,7 +0,0 @@
//
#include "RenderContext.hpp"
RenderContext::RenderContext()
: time(0),texsize(512), aspectRatio(1), aspectCorrect(false){};

View File

@ -1,22 +0,0 @@
#ifndef RenderContext_hpp
#define RenderContext_hpp
#include "TextureManager.hpp"
class BeatDetect;
class ShaderEngine;
class RenderContext
{
public:
float time;
int texsize;
float aspectRatio;
bool aspectCorrect;
BeatDetect *beatDetect;
TextureManager *textureManager;
RenderContext();
};
#endif /* RenderContext_hpp */