mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-20 15:08:40 +00:00
20 lines
335 B
C
20 lines
335 B
C
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef TOS_GPUAPI_OPENGL_SHADER_H
|
|
#define TOS_GPUAPI_OPENGL_SHADER_H
|
|
|
|
#include "../../stdlib/Types.h"
|
|
|
|
struct Shader {
|
|
uint32 shader_id;
|
|
uint32 shader_locations[7];
|
|
byte shader_data[16];
|
|
};
|
|
|
|
#endif |