+ added drawCircle in renderer

This commit is contained in:
end 2016-09-25 23:05:27 +02:00
parent c482a3f779
commit a4557a2762
3 changed files with 23 additions and 2 deletions

View file

@ -1,12 +1,20 @@
#pragma once
#include <math.h>
#include <epoxy/gl.h>
#include <epoxy/glx.h>
namespace endofthejedi {
class Renderer {
private:
protected:
public:
Renderer();
~Renderer();
void drawCircle(float x, float y, float radius, float r,
float g, float b);
};
}