diff options
-rw-r--r-- | src/gallium/docs/source/context.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/docs/source/context.rst b/src/gallium/docs/source/context.rst index 6563a7e1503..a46131c31fe 100644 --- a/src/gallium/docs/source/context.rst +++ b/src/gallium/docs/source/context.rst @@ -99,6 +99,14 @@ objects. They all follow simple, one-method binding calls, e.g. various debug messages, eventually reported via KHR_debug and similar mechanisms. +Samplers +^^^^^^^^ + +pipe_sampler_state objects control how textures are sampled (coordinate +wrap modes, interpolation modes, etc). Note that samplers are not used +for texture buffer objects. That is, pipe_context::bind_sampler_views() +will not bind a sampler if the corresponding sampler view refers to a +PIPE_BUFFER resource. Sampler Views ^^^^^^^^^^^^^ |