aboutsummaryrefslogtreecommitdiff
path: root/BuddhaTest/include/Helpers.h
blob: 05ad1516fe5664e7a96c8c0b5ac93ae407476afd (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
#include <glad/glad.h>
#include <GLFW/glfw3.h>

namespace Helpers
{
	GLuint LoadShaders(const char * vertex_file_path, const char * fragment_file_path);
	GLuint LoadComputeShader(const char * compute_file_path);
}