22 lines
568 B
C
22 lines
568 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include <vitasdk.h>
|
|
|
|
#define GL_COLOR_INDEX8_EXT 0x80E5
|
|
#define GL_NO_ERROR 0
|
|
#define glDrawArrays(type, first, count) ((void)0)
|
|
#define glColorTableEXT(target, internalformat, count, format, type, pixels) ((void)0)
|
|
#define glDepthFunc(func) ((void)0)
|
|
#define glBlendFunc(sfactor, dfactor) ((void)0)
|
|
#define glGetError() GL_NO_ERROR
|
|
#define GL_GLEXT_PROTOTYPES
|
|
|
|
typedef uint32_t GLbitfield;
|
|
|
|
#include "dusksdl2.h" |