フォントテーブル
More...
Go to the source code of this file.
フォントテーブル
- Author
- Copyright (C)2009 SiliconStudio Inc. All rights reserved.
-
Mutsuhiro Furuya
-
Tahir Arai
◆ FONTINFO_TAG_POP_VALUE
#define FONTINFO_TAG_POP_VALUE |
( |
| _Value, |
|
|
| _Buffer, |
|
|
| _StackInt ) |
Value: { \
if(_StackInt != 0){ _StackInt --; \
_Value = _Buffer[_StackInt]; } \
else{ GX_MEMSET(&_Value, 0, sizeof(_Value)); } \
}
◆ FONTINFO_TAG_PUSH_VALUE
#define FONTINFO_TAG_PUSH_VALUE |
( |
| _Value, |
|
|
| _Buffer, |
|
|
| _StackInt ) |
Value: { \
_Buffer[_StackInt] = _Value; \
if(_StackInt != (FONTINFO_TAG_NUM_STACK-1)) { _StackInt ++; } \
}