Add Roboto font, misc icons and text things

This commit is contained in:
elasota
2019-12-23 17:43:10 -05:00
parent e089cabf98
commit 7ab4c8960d
120 changed files with 2995 additions and 743 deletions

17
GpCommon/GpPixelFormat.h Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
namespace GpPixelFormats
{
enum GpPixelFormat
{
kInvalid,
k8BitStandard,
k8BitCustom,
kRGB555,
kRGB24,
kRGB32,
};
}
typedef GpPixelFormats::GpPixelFormat GpPixelFormat_t;