From: Brian Paul Date: Thu, 3 Dec 2009 21:57:13 +0000 (-0700) Subject: llvmpipe: comments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29207a2ae6d3e6bae05621cb924c4a1940ce57fc;p=mesa.git llvmpipe: comments --- diff --git a/src/gallium/drivers/llvmpipe/lp_setup_context.h b/src/gallium/drivers/llvmpipe/lp_setup_context.h index 3209e41c01f..a3ec82e3825 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup_context.h +++ b/src/gallium/drivers/llvmpipe/lp_setup_context.h @@ -103,8 +103,8 @@ struct setup_context { struct { unsigned flags; - union lp_rast_cmd_arg color; - union lp_rast_cmd_arg zstencil; + union lp_rast_cmd_arg color; /**< lp_rast_clear_color() cmd */ + union lp_rast_cmd_arg zstencil; /**< lp_rast_clear_zstencil() cmd */ } clear; enum { @@ -117,8 +117,8 @@ struct setup_context { struct lp_shader_input input[PIPE_MAX_ATTRIBS]; unsigned nr_inputs; - const struct lp_rast_state *stored; - struct lp_rast_state current; + const struct lp_rast_state *stored; /**< what's in the bins */ + struct lp_rast_state current; /**< currently set state */ } fs; struct {