mirror of
https://github.com/vale981/Hyprland
synced 2025-03-13 06:06:38 -04: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;
|
||
|
};
|