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
19 lines
551 B
C
19 lines
551 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shadergl.h"
|
|
|
|
typedef shadergl_t shaderplatform_t;
|
|
typedef shaderdefinitiongl_t shaderdefinitionplatform_t;
|
|
|
|
#define shaderInitPlatform shaderInitGL
|
|
#define shaderBindPlatform shaderBindGL
|
|
#define shaderSetMatrixPlatform shaderSetMatrixGL
|
|
#define shaderSetTexturePlatform shaderSetTextureGL
|
|
// #define shaderSetColorPlatform shaderSetColorGL
|
|
#define shaderDisposePlatform shaderDisposeGL |