16 lines
417 B
C
16 lines
417 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "display/texture/texturegl.h"
|
|
|
|
typedef textureformatgl_t textureformatplatform_t;
|
|
typedef texturegl_t textureplatform_t;
|
|
|
|
#define textureInitPlatform textureInitGL
|
|
#define textureBindPlatform textureBindGL
|
|
#define textureDisposePlatform textureDisposeGL |