mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 13:26:00 +01:00
20 lines
270 B
C++
20 lines
270 B
C++
|
#pragma once
|
||
|
|
||
|
#include "../defines.hpp"
|
||
|
|
||
|
struct SQuad {
|
||
|
GLuint program;
|
||
|
GLint proj;
|
||
|
GLint color;
|
||
|
GLint posAttrib;
|
||
|
};
|
||
|
|
||
|
class CShader {
|
||
|
public:
|
||
|
GLuint program;
|
||
|
GLint proj;
|
||
|
GLint tex;
|
||
|
GLint alpha;
|
||
|
GLint posAttrib;
|
||
|
GLint texAttrib;
|
||
|
};
|