gallium/docs: clarify set_sampler_views (v2)
authorRob Clark <robdclark@gmail.com>
Thu, 14 Mar 2019 12:48:08 +0000 (08:48 -0400)
committerRob Clark <robdclark@gmail.com>
Sat, 30 Mar 2019 17:04:00 +0000 (13:04 -0400)
Signed-off-by: Rob Clark <robdclark@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/gallium/docs/source/context.rst
src/gallium/include/pipe/p_context.h

index f89d9e1005eb6d3ba16381e3b1bf846997beff1f..06d30bfb38b477c19a37c0d525bb282a6d691ba7 100644 (file)
@@ -143,6 +143,11 @@ to the array index which is used for sampling.
   to a respective sampler view and releases a reference to the previous
   sampler view.
 
+  Sampler views outside of ``[start_slot, start_slot + num_views)`` are
+  unmodified.  If ``views`` is NULL, the behavior is the same as if
+  ``views[n]`` was NULL for the entire range, ie. releasing the reference
+  for all the sampler views in the specified range.
+
 * ``create_sampler_view`` creates a new sampler view. ``texture`` is associated
   with the sampler view which results in sampler view holding a reference
   to the texture. Format specified in template must be compatible
index e07b76d4f03b186f46ef8817f1c597d821280446..5c62ed49fa7ae5ae41aae1121814e21490b72367 100644 (file)
@@ -327,7 +327,7 @@ struct pipe_context {
    void (*set_sampler_views)(struct pipe_context *,
                              enum pipe_shader_type shader,
                              unsigned start_slot, unsigned num_views,
-                             struct pipe_sampler_view **);
+                             struct pipe_sampler_view **views);
 
    void (*set_tess_state)(struct pipe_context *,
                           const float default_outer_level[4],