mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): added definitions for a handful of UI objects
This commit is contained in:
parent
ac20b7a227
commit
8ff5db67f2
39 changed files with 4484 additions and 183 deletions
30
profile/3.3.5a-windows/include/gx/stringbatch.h
Normal file
30
profile/3.3.5a-windows/include/gx/stringbatch.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#ifndef GX_STRING_BATCH_H
|
||||
#define GX_STRING_BATCH_H
|
||||
|
||||
#include "storm/list.h"
|
||||
#include "storm/hash.h"
|
||||
#include "gx/font.h"
|
||||
|
||||
DECLARE_STRUCT(CGxStringBatch);
|
||||
DECLARE_STRUCT(BATCHEDRENDERFONTDESC);
|
||||
|
||||
STORM_TS_HASH(BATCHEDRENDERFONTDESC, HASHKEY_PTR);
|
||||
|
||||
STORM_TS_LIST(CGxStringBatch);
|
||||
|
||||
// struct BATCHEDRENDERFONTDESC : TSHashObject<BATCHEDRENDERFONTDESC, HASHKEY_PTR>
|
||||
struct BATCHEDRENDERFONTDESC {
|
||||
TSHashObject_BATCHEDRENDERFONTDESC_HASHKEY_PTR b_base;
|
||||
CGxFont* m_face;
|
||||
// STORM_EXPLICIT_LIST(CGxString, m_batchedStringLink) m_strings;
|
||||
TSExplicitList_CGxString m_strings;
|
||||
};
|
||||
|
||||
// CGxStringBatch : TSLinkedNode<CGxStringBatch>
|
||||
struct CGxStringBatch {
|
||||
TSLinkedNode_CGxStringBatch b_base;
|
||||
TSHashTable_BATCHEDRENDERFONTDESC_HASHKEY_PTR m_fontBatch;
|
||||
uint32_t m_flags;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue