2023-08
2023-08-01
- Aligning structures to std140, CPU side - Stack Overflow
in C++, the structure is:
layout(std140) uniform UB { float f1; vec3 v1; float f2; };
struct alignas(16) UB { float f1; float _pad1[3]; float v1[3]; float f2; }
2023-08-06
- C++
std::is_same
std::is_same_v
- C++
std::end
2023-08-07
- Ciallo - The next generation vector paint program. - GitHub
- Ciallo 次世代矢量绘图软件 - SIGGRAPH 2023 Talk - 大柚子厨的文章 - 知乎
- C++
std::copy
std::copy_if
std::copy_n
2023-08-09
2023-08-10
2023-08-11
- C++11 std::memory_order
2023-08-13
2023-08-16
- Reverse Z (and why it's so awesome)
- 翻译搬运 - Dejhon的文章 - 知乎
- 反向Z(Reversed-Z)的深度缓冲原理 - 窝的舔的文章 - 知乎
- Xmake 新手教程 - 恒星的文章 - 知乎
2023-08-28
- C++ std::for_each
2023-08-30
2023-08-30
- 三分钟搞定VSCode中GLSL相关配置 - Cynric的文章 - 知乎