basekernel/include/kernel/gfxstream.h

21 lines
382 B
C
Raw Normal View History

2024-10-17 23:43:33 +02:00
/*
Copyright (C) 2016-2019 The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file LICENSE for details.
*/
#ifndef KERNEL_GFXSTREAM_H
#define KERNEL_GFXSTREAM_H
typedef enum {
GRAPHICS_END = 0,
GRAPHICS_FGCOLOR,
GRAPHICS_BGCOLOR,
GRAPHICS_LINE,
GRAPHICS_RECT,
GRAPHICS_CLEAR,
GRAPHICS_TEXT
} graphics_command_t;
#endif