mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
Move font handler and platform-independent shell stuff
This commit is contained in:
8
GpCommon/EGpFontHandlerType.h
Normal file
8
GpCommon/EGpFontHandlerType.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
enum EGpFontHandlerType
|
||||
{
|
||||
EGpFontHandlerType_FreeType2,
|
||||
|
||||
EGpFontHandlerType_Count,
|
||||
};
|
8
GpCommon/GpFontHandlerProperties.h
Normal file
8
GpCommon/GpFontHandlerProperties.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "EGpFontHandlerType.h"
|
||||
|
||||
struct GpFontHandlerProperties
|
||||
{
|
||||
EGpFontHandlerType m_type;
|
||||
};
|
@@ -1,8 +1,8 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
|
||||
struct IGpDisplayDriverSurface
|
||||
{
|
||||
virtual void Upload(const void *data, size_t x, size_t y, size_t width, size_t height, size_t pitch) = 0;
|
||||
virtual void UploadEntire(const void *data, size_t pitch) = 0;
|
||||
virtual void UploadEntire(const void *data, size_t pitch) = 0;
|
||||
virtual void Destroy() = 0;
|
||||
};
|
||||
|
Reference in New Issue
Block a user