mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-31 11:53:48 -07: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;
|
|
}; |