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