mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 19:30:11 +01:00
clean-up comments
This commit is contained in:
parent
6d88515190
commit
399077d760
2 changed files with 8 additions and 14 deletions
|
|
@ -56,22 +56,15 @@ struct i915_fp_compile {
|
|||
uint num_constants;
|
||||
uint constant_flags[I915_MAX_CONSTANT]; /**< status of each constant */
|
||||
|
||||
uint *csr; /* Cursor, points into program.
|
||||
*/
|
||||
uint *csr; /**< Cursor, points into program. */
|
||||
|
||||
uint *decl; /* Cursor, points into declarations.
|
||||
*/
|
||||
uint *decl; /**< Cursor, points into declarations. */
|
||||
|
||||
uint decl_s; /* flags for which s regs need to be decl'd */
|
||||
uint decl_t; /* flags for which t regs need to be decl'd */
|
||||
uint decl_s; /**< flags for which s regs need to be decl'd */
|
||||
uint decl_t; /**< flags for which t regs need to be decl'd */
|
||||
|
||||
uint temp_flag; /* Tracks temporary regs which are in
|
||||
* use.
|
||||
*/
|
||||
|
||||
uint utemp_flag; /* Tracks TYPE_U temporary regs which are in
|
||||
* use.
|
||||
*/
|
||||
uint temp_flag; /**< Tracks temporary regs which are in use */
|
||||
uint utemp_flag; /**< Tracks TYPE_U temporary regs which are in use */
|
||||
|
||||
uint nr_tex_indirect;
|
||||
uint nr_tex_insn;
|
||||
|
|
|
|||
|
|
@ -201,7 +201,8 @@ static void reset_stipple_counter( struct draw_stage *stage )
|
|||
|
||||
|
||||
/**
|
||||
* Create a new primitive setup/render stage.
|
||||
* Create a new primitive setup/render stage. This gets plugged into
|
||||
* the 'draw' module's pipeline.
|
||||
*/
|
||||
struct draw_stage *i915_draw_render_stage( struct i915_context *i915 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue