Color member functions

This commit is contained in:
Not-Nik 2023-07-11 15:50:31 +02:00
parent 2578dceb42
commit 9e908b3925
Failed to generate hash of commit
6 changed files with 92 additions and 4 deletions

View file

@ -14,7 +14,7 @@ pub fn main() anyerror!void {
rl.initWindow(screenWidth, screenHeight, "raylib [shaders] example - Apply an outline to a texture");
const texture: rl.Texture2D = rl.loadTexture("resources/textures/fudesumi.png");
const texture: rl.Texture = rl.Texture.init("resources/textures/fudesumi.png");
const shdrOutline: rl.Shader = rl.loadShader(null, "resources/shaders/glsl330/outline.fs");