cen64/os/sdl/gl_common.h
2022-05-21 13:51:34 +02:00

32 lines
675 B
C

//
//
// CEN64: Cycle-Accurate Nintendo 64 Emulator.
// Copyright (C) 2015, Tyler J. Stachecki.
//
// This file is subject to the terms and conditions defined in
// 'LICENSE', which is part of this source code package.
//
#ifndef CEN64_OS_SDL_GL_COMMON
#define CEN64_OS_SDL_GL_COMMON
#include "common.h"
enum cen64_gl_context_type {
CEN64_GL_CONTEXT_TYPE_RGBA,
CEN64_GL_CONTEXT_TYPE_COLOR_INDEX
};
enum cen64_gl_drawable_type {
CEN64_GL_DRAWABLE_TYPE_WINDOW,
CEN64_GL_DRAWABLE_TYPE_BITMAP
};
enum cen64_gl_layer_type {
CEN64_GL_LAYER_TYPE_DEFAULT = 0,
CEN64_GL_LAYER_TYPE_OVERLAY = 1,
CEN64_GL_LAYER_TYPE_UNDERLAY = 2
};
#endif