diff options
author | Brian Paul <[email protected]> | 2009-12-03 14:57:13 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-12-03 14:57:13 -0700 |
commit | 29207a2ae6d3e6bae05621cb924c4a1940ce57fc (patch) | |
tree | 86d8c26d8125bd0eebffdb59e87672083b8964ac | |
parent | 0e042bed49c51fef38b02b7cc05efa504f2f703d (diff) |
llvmpipe: comments
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup_context.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 { |