implemented shaders, gradients, and uv mapping

This commit is contained in:
2026-07-07 12:17:32 -07:00
parent 989cb196ed
commit ad2e84c279
10 changed files with 149 additions and 27 deletions
+4 -2
View File
@@ -12,8 +12,10 @@ namespace UwU {
public:
Shader() {}
Color color() {
return Color(0xb00b69ff);
virtual Color color(uint16_t u, uint16_t v) {
(void)u;
(void)v;
return Color();
}
};
}