facecam2d/src/graphics.hpp

20 lines
312 B
C++
Raw Normal View History

2020-12-31 12:58:39 +00:00
#ifndef GRAPHICS_H
#define GRAPHICS_H
#include <GL/gl.h>
#include <glm/vec2.hpp>
void initGraphics ();
void graphicsFrame ();
void initTexture (GLuint* texNum, const char* path);
void initShader();
2020-12-31 12:58:39 +00:00
void printShaderCompileLog(GLuint shader);
void updateModel(glm::vec2 headPos, glm::vec2 facePos);
2020-12-31 12:58:39 +00:00
#endif