[Mesa-dev] [PATCH 3/3] cso: remove / add some comments

Brian Paul brianp at vmware.com
Thu Dec 10 13:08:36 PST 2015


---
 src/gallium/auxiliary/cso_cache/cso_context.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c
index 06089ad..afcf27d 100644
--- a/src/gallium/auxiliary/cso_cache/cso_context.c
+++ b/src/gallium/auxiliary/cso_cache/cso_context.c
@@ -51,8 +51,7 @@
 
 
 /**
- * Info related to samplers and sampler views.
- * We have one of these for fragment samplers and another for vertex samplers.
+ * Per-shader sampler information.
  */
 struct sampler_info
 {
@@ -1095,7 +1094,6 @@ unsigned cso_get_aux_vertex_buffer_slot(struct cso_context *ctx)
 }
 
 
-/**************** fragment/vertex sampler view state *************************/
 
 enum pipe_error
 cso_single_sampler(struct cso_context *ctx, unsigned shader_stage,
@@ -1140,6 +1138,9 @@ cso_single_sampler(struct cso_context *ctx, unsigned shader_stage,
 }
 
 
+/**
+ * Send staged sampler state to the driver.
+ */
 void
 cso_single_sampler_done(struct cso_context *ctx, unsigned shader_stage)
 {
@@ -1193,9 +1194,6 @@ cso_set_samplers(struct cso_context *ctx,
    unsigned i;
    enum pipe_error temp, error = PIPE_OK;
 
-   /* TODO: fastpath
-    */
-
    for (i = 0; i < nr; i++) {
       temp = cso_single_sampler(ctx, shader_stage, i, templates[i]);
       if (temp != PIPE_OK)
-- 
1.9.1



More information about the mesa-dev mailing list