1 Star 0 Fork 0

mo~si/games101_03

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Shader.hpp 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hugh 提交于 2022-02-22 16:20 . 添加项目文件。
//
// Created by LEI XU on 4/27/19.
//
#ifndef RASTERIZER_SHADER_H
#define RASTERIZER_SHADER_H
#include <Eigen/Eigen>
#include "Texture.hpp"
struct fragment_shader_payload
{
fragment_shader_payload()
{
texture = nullptr;
}
fragment_shader_payload(const Eigen::Vector3f& col, const Eigen::Vector3f& nor,const Eigen::Vector2f& tc, Texture* tex) :
color(col), normal(nor), tex_coords(tc), texture(tex) {}
Eigen::Vector3f view_pos;
Eigen::Vector3f color;
Eigen::Vector3f normal;
Eigen::Vector2f tex_coords;
Texture* texture;
};
struct vertex_shader_payload
{
Eigen::Vector3f position;
};
#endif //RASTERIZER_SHADER_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mo-si/games101_03.git
git@gitee.com:mo-si/games101_03.git
mo-si
games101_03
games101_03
master

搜索帮助