diff options
author | Brian Paul <[email protected]> | 2005-09-01 03:50:54 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-01 03:50:54 +0000 |
commit | 8e5479c7f806ffd57eed26c147e3ca227a39f0a7 (patch) | |
tree | 9dc7092db860ac0f2a20c47bb9024325cec56447 /src/mesa/drivers/dri/r200 | |
parent | f1d269060b050bbf3d7cc751c3c7333d795fb215 (diff) |
s/__inline/INLINE/
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_swtcl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_swtcl.c b/src/mesa/drivers/dri/r200/r200_swtcl.c index 9d5a2f2924a..375db2658dc 100644 --- a/src/mesa/drivers/dri/r200/r200_swtcl.c +++ b/src/mesa/drivers/dri/r200/r200_swtcl.c @@ -307,8 +307,8 @@ static void flush_last_swtcl_prim( r200ContextPtr rmesa ) /* Alloc space in the current dma region. */ -static __inline void *r200AllocDmaLowVerts( r200ContextPtr rmesa, - int nverts, int vsize ) +static INLINE void * +r200AllocDmaLowVerts( r200ContextPtr rmesa, int nverts, int vsize ) { GLuint bytes = vsize * nverts; |