Some checks failed
Build Dusk / run-tests (push) Failing after 16s
Build Dusk / build-linux (push) Failing after 17s
Build Dusk / build-psp (push) Failing after 18s
Build Dusk / build-gamecube (push) Failing after 17s
Build Dusk / build-wii (push) Failing after 17s
18 lines
451 B
C
18 lines
451 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shader.h"
|
|
|
|
#define SHADER_UNLIT_PROJECTION "u_Proj"
|
|
#define SHADER_UNLIT_VIEW "u_View"
|
|
#define SHADER_UNLIT_MODEL "u_Model"
|
|
#define SHADER_UNLIT_TEXTURE "u_Texture"
|
|
// #define SHADER_UNLIT_COLOR "u_Color"
|
|
|
|
extern shaderdefinition_t SHADER_UNLIT_DEFINITION;
|
|
static shader_t SHADER_UNLIT; |