You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
946 B
C
37 lines
946 B
C
// File: llgfx_smode.h
|
|
//
|
|
// G A M E.O.N.E - LOW LEVEL LIB V1.0
|
|
// Copyright (C) 2001 LEVEL ONE ENTERTAINMENT,
|
|
// Licensed under the terms of LGPL.
|
|
//:---------------------------------------------------------------------------
|
|
//:Description
|
|
//
|
|
// Struktur von einem gültigen Displaymodus.
|
|
//
|
|
//:-----------------------------------------------------------------------------
|
|
|
|
#if !defined(LLGFX_SMODE_INCLUDED)
|
|
#define LLGFX_SMODE_INCLUDED
|
|
|
|
//:> +--------------------------------+
|
|
//:>---------------------| _mode Struct Declaration |---------------------
|
|
//:> +--------------------------------+
|
|
//:Class
|
|
struct _mode
|
|
{
|
|
int width; // Pixelbreite displaymodus
|
|
int height; // Pixelhöhe displaymodus
|
|
int bpp; // Bits pro Pixel
|
|
int refresh; // Refreshrate in Hz
|
|
};
|
|
|
|
|
|
//:Custom
|
|
typedef struct _mode llgfx_sDisplayMode;
|
|
typedef struct _mode s_mode;
|
|
//:End Custom
|
|
|
|
#endif // LLGFX_SMODE_INCLUDED
|
|
|
|
|