mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 00:10:20 +01:00
add missing 'union' keyword
This commit is contained in:
parent
ba23f699f0
commit
da21ca988a
1 changed files with 3 additions and 2 deletions
|
|
@ -1275,8 +1275,9 @@ union r300_outputs_written {
|
|||
DECLARE_RENDERINPUTS(index_bitset); /* !hw_tcl_on */
|
||||
};
|
||||
|
||||
static GLboolean r300_outputs_written_test (r300_outputs_written *ow, GLuint vp_result,
|
||||
GLuint tnl_attrib)
|
||||
static GLboolean
|
||||
r300_outputs_written_test(union r300_outputs_written *ow, GLuint vp_result,
|
||||
GLuint tnl_attrib)
|
||||
{
|
||||
if (hw_tcl_on)
|
||||
return ow->vp_outputs & (1 << vp_result);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue