#pragma once #include #include #include namespace Helpers { GLuint LoadShaders(const char * vertex_file_path, const char * fragment_file_path); GLuint LoadComputeShader(const char * compute_file_path); void WriteOutputPNG(const std::vector& data, unsigned int width, unsigned int height); }