From d65eaa38aba6ba0fed0c22b3dc4c7992308de183 Mon Sep 17 00:00:00 2001 From: sbosse Date: Thu, 17 Oct 2024 23:43:33 +0200 Subject: [PATCH] Thu 17 Oct 23:42:52 CEST 2024 --- include/kernel/gfxstream.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/kernel/gfxstream.h diff --git a/include/kernel/gfxstream.h b/include/kernel/gfxstream.h new file mode 100644 index 0000000..29ab57b --- /dev/null +++ b/include/kernel/gfxstream.h @@ -0,0 +1,20 @@ +/* +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