2021-04-16 19:42:02 +03:00
|
|
|
/*
|
|
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the 86Box distribution.
|
|
|
|
|
*
|
|
|
|
|
* Header file for shader file parser.
|
|
|
|
|
*
|
|
|
|
|
* Authors: Teemu Korhonen
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2021 Teemu Korhonen
|
|
|
|
|
*/
|
2022-02-18 19:42:21 -05:00
|
|
|
|
2021-04-16 19:42:02 +03:00
|
|
|
#ifndef WIN_OPENGL_GLSLP_H
|
|
|
|
|
#define WIN_OPENGL_GLSLP_H
|
|
|
|
|
|
|
|
|
|
#include <glad/glad.h>
|
|
|
|
|
|
2021-04-21 01:33:01 +03:00
|
|
|
GLuint load_custom_shaders(const char* path);
|
2021-04-16 19:42:02 +03:00
|
|
|
GLuint load_default_shaders();
|
|
|
|
|
|
2022-02-18 19:42:21 -05:00
|
|
|
#endif /*!WIN_OPENGL_GLSLP_H*/
|