Module: Mesa Branch: master Commit: 0fd82f545532c6b72d583524451b5ef56e139eee URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0fd82f545532c6b72d583524451b5ef56e139eee
Author: Miklós Máté <[email protected]> Date: Sat Dec 2 23:35:24 2017 +0100 mesa: document ati_fragment_shader::cur_pass and swizzlerq Signed-off-by: Miklós Máté <[email protected]> --- src/mesa/main/mtypes.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index a29d78b101..a4f1e78f41 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2390,10 +2390,14 @@ struct ati_fragment_shader GLubyte numArithInstr[2]; GLubyte regsAssigned[2]; GLubyte NumPasses; /**< 1 or 2 */ + /** Current compile stage: 0 setup pass1, 1 arith pass1, 2 setup pass2, 3 arith pass2 */ GLubyte cur_pass; GLubyte last_optype; GLboolean interpinp1; GLboolean isValid; + /** Array of 2 bit values for each tex unit to remember whether + * STR or STQ swizzle was used + */ GLuint swizzlerq; struct gl_program *Program; }; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
