mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-23 14:21:57 +00:00
[client] state struct rename
This commit is contained in:
parent
74403cce8c
commit
96ae755856
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
typedef void (*CompFunc)(uint8_t * dst, const uint8_t * src, const size_t len);
|
typedef void (*CompFunc)(uint8_t * dst, const uint8_t * src, const size_t len);
|
||||||
typedef void (*DrawFunc)(CompFunc compFunc, uint8_t * dst, const uint8_t * src);
|
typedef void (*DrawFunc)(CompFunc compFunc, uint8_t * dst, const uint8_t * src);
|
||||||
|
|
||||||
struct KVMGFXState
|
struct AppState
|
||||||
{
|
{
|
||||||
bool hasBufferStorage;
|
bool hasBufferStorage;
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ struct KVMGFXState
|
||||||
struct KVMGFXHeader * shm;
|
struct KVMGFXHeader * shm;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct KVMGFXState state;
|
struct AppState state;
|
||||||
|
|
||||||
void compFunc_NONE(uint8_t * dst, const uint8_t * src, const size_t len)
|
void compFunc_NONE(uint8_t * dst, const uint8_t * src, const size_t len)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue