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.
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
//:Header:44, "_rgb", 3b93fb56
|
|
//
|
|
// File: llgfx_srgb.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
|
|
//
|
|
// Enthält 32Bit Masken für R,G,B,A Werte sowie die Byte Anzahl pro Pixel.
|
|
// Eine Globale Instanz dieser Struktur wird bei jedem setzen des Bildschirm Modus
|
|
// befüllt.
|
|
//
|
|
// siehe:
|
|
// llgfx_rgb - globale s_rgb Struktur, gültig für den akutellen Bildschirmmodus.
|
|
//
|
|
//:-----------------------------------------------------------------------------
|
|
|
|
#if !defined(LLGFX_SRGB_INCLUDED)
|
|
#define LLGFX_SRGB_INCLUDED
|
|
|
|
//:> +-------------------------------+
|
|
//:>---------------------| _rgb Struct Declaration |----------------------
|
|
//:> +-------------------------------+
|
|
//:Class
|
|
struct _rgb
|
|
{
|
|
int bitspixel; // Anzahl Bits pro Pixel
|
|
int pixsize; // Anzahl Bytes pro Pixel, gültige Wert sind 1,2,3,4
|
|
};
|
|
|
|
//:Custom
|
|
typedef struct _rgb s_rgb;
|
|
//:End Custom
|
|
|
|
#endif // LLGFX_SRGB_INCLUDED
|
|
|