From: Brian Paul Date: Tue, 21 Apr 2015 14:10:22 +0000 (-0600) Subject: cso: minor comment fix X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=02e93be55e81d5ff257f4717eb3fdb5a8f79b544;p=mesa.git cso: minor comment fix --- diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index 5d597ba5c29..31ffa7d9c0b 100644 --- a/src/gallium/auxiliary/cso_cache/cso_context.c +++ b/src/gallium/auxiliary/cso_cache/cso_context.c @@ -326,7 +326,7 @@ void cso_destroy_context( struct cso_context *ctx ) ctx->pipe->set_stream_output_targets(ctx->pipe, 0, NULL, NULL); } - /* free fragment sampler views */ + /* free sampler views for each shader stage */ for (shader = 0; shader < Elements(ctx->samplers); shader++) { struct sampler_info *info = &ctx->samplers[shader]; for (i = 0; i < PIPE_MAX_SHADER_SAMPLER_VIEWS; i++) {