mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
r600: fix inline issues
This commit is contained in:
parent
1f8c23d9db
commit
f9b0f1dfa1
2 changed files with 2 additions and 4 deletions
|
|
@ -4976,7 +4976,7 @@ GLboolean assemble_EXPORT(r700_AssemblerBase *pAsm)
|
|||
return GL_TRUE;
|
||||
}
|
||||
|
||||
inline void decreaseCurrent(r700_AssemblerBase *pAsm, GLuint uReason)
|
||||
static inline void decreaseCurrent(r700_AssemblerBase *pAsm, GLuint uReason)
|
||||
{
|
||||
switch (uReason)
|
||||
{
|
||||
|
|
@ -4996,7 +4996,7 @@ inline void decreaseCurrent(r700_AssemblerBase *pAsm, GLuint uReason)
|
|||
};
|
||||
}
|
||||
|
||||
inline void checkStackDepth(r700_AssemblerBase *pAsm, GLuint uReason, GLboolean bCheckMaxOnly)
|
||||
static inline void checkStackDepth(r700_AssemblerBase *pAsm, GLuint uReason, GLboolean bCheckMaxOnly)
|
||||
{
|
||||
if(GL_TRUE == bCheckMaxOnly)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -435,8 +435,6 @@ typedef struct r700_AssemblerBase
|
|||
} r700_AssemblerBase;
|
||||
|
||||
//Internal use
|
||||
inline void checkStackDepth(r700_AssemblerBase *pAsm, GLuint uReason, GLboolean bCheckMaxOnly);
|
||||
inline void decreaseCurrent(r700_AssemblerBase *pAsm, GLuint uReason);
|
||||
BITS addrmode_PVSDST(PVSDST * pPVSDST);
|
||||
void setaddrmode_PVSDST(PVSDST * pPVSDST, BITS addrmode);
|
||||
void nomask_PVSDST(PVSDST * pPVSDST);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue