- use build in data types
git-svn-id: http://moon:8086/svn/mips@35 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
@@ -14,7 +14,7 @@ static char RI_DEFAULT_FILNAME[] = "ri.pic";
|
||||
// Graphics state functions
|
||||
void GS_init(graph_state_t *pObj)
|
||||
{
|
||||
UINT32 i;
|
||||
uint32_t i;
|
||||
|
||||
pObj->pAttr_stack = Stack_push(NULL, &pObj->pAttr, sizeof(attr_t));
|
||||
pObj->pOpt_stack = Stack_push(NULL, &pObj->pOpt, sizeof(opt_t));
|
||||
@@ -95,7 +95,7 @@ void GS_xform_pop(graph_state_t *pObj)
|
||||
GS_xform_set(pObj, pObj->curr_xform);
|
||||
}
|
||||
|
||||
void GS_xform_set(graph_state_t *pObj, UINT32 id)
|
||||
void GS_xform_set(graph_state_t *pObj, uint32_t id)
|
||||
{
|
||||
pObj->curr_xform = id;
|
||||
pObj->pXform_curr = &pObj->pXform->space[id];
|
||||
|
||||
Reference in New Issue
Block a user