mirror of
https://github.com/n64dev/cen64.git
synced 2025-04-02 10:31:54 -04:00
32 lines
675 B
C
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
|
|
|