加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
shader.h 530 Bytes
一键复制 编辑 原始数据 按行查看 历史
pengrui_2009 提交于 2021-03-03 20:15 . Feature:add Shader class.
#ifndef SHADER_H
#define SHADER_H
#include <glad/glad.h> //
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
class Shader {
public:
//程序ID
unsigned int ID;
Shader(const GLchar* vertexPath, const GLchar* fragmentPath);
//使用着色器
void use();
//设置uniform变量
void setBool(const std::string& name, bool value) const;
void setInt(const std::string& name, int value) const;
void setFloat(const std::string& name, float value) const;
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化