tgsi: add tgsi_declaration fields for centroid sampling, invariant optimization
This commit is contained in:
@@ -119,6 +119,8 @@ tgsi_default_declaration( void )
|
|||||||
declaration.UsageMask = TGSI_WRITEMASK_XYZW;
|
declaration.UsageMask = TGSI_WRITEMASK_XYZW;
|
||||||
declaration.Interpolate = TGSI_INTERPOLATE_CONSTANT;
|
declaration.Interpolate = TGSI_INTERPOLATE_CONSTANT;
|
||||||
declaration.Semantic = 0;
|
declaration.Semantic = 0;
|
||||||
|
declaration.Centroid = 0;
|
||||||
|
declaration.Invariant = 0;
|
||||||
declaration.Padding = 0;
|
declaration.Padding = 0;
|
||||||
declaration.Extended = 0;
|
declaration.Extended = 0;
|
||||||
|
|
||||||
|
@@ -246,6 +246,14 @@ iter_declaration(
|
|||||||
TXT( ", " );
|
TXT( ", " );
|
||||||
ENM( decl->Declaration.Interpolate, interpolate_names );
|
ENM( decl->Declaration.Interpolate, interpolate_names );
|
||||||
|
|
||||||
|
if (decl->Declaration.Centroid) {
|
||||||
|
TXT( ", CENTROID" );
|
||||||
|
}
|
||||||
|
|
||||||
|
if (decl->Declaration.Invariant) {
|
||||||
|
TXT( ", INVARIANT" );
|
||||||
|
}
|
||||||
|
|
||||||
EOL();
|
EOL();
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@@ -112,7 +112,9 @@ struct tgsi_declaration
|
|||||||
unsigned UsageMask : 4; /* bitmask of TGSI_WRITEMASK_x flags */
|
unsigned UsageMask : 4; /* bitmask of TGSI_WRITEMASK_x flags */
|
||||||
unsigned Interpolate : 4; /* TGSI_INTERPOLATE_ */
|
unsigned Interpolate : 4; /* TGSI_INTERPOLATE_ */
|
||||||
unsigned Semantic : 1; /* BOOL, any semantic info? */
|
unsigned Semantic : 1; /* BOOL, any semantic info? */
|
||||||
unsigned Padding : 6;
|
unsigned Centroid : 1; /* centroid sampling */
|
||||||
|
unsigned Invariant : 1; /* invariant optimization */
|
||||||
|
unsigned Padding : 4;
|
||||||
unsigned Extended : 1; /* BOOL */
|
unsigned Extended : 1; /* BOOL */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user