From a44554870ef4d5bc42c4b34aa1ce8d6979ddd92c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 23 Jan 2014 15:04:40 -0700 Subject: [PATCH] svga: rename "tex_usage" to "bindings", add comments Trivial. --- src/gallium/drivers/svga/svga_screen.c | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c index 12ea4af824f..32eec038ada 100644 --- a/src/gallium/drivers/svga/svga_screen.c +++ b/src/gallium/drivers/svga/svga_screen.c @@ -402,25 +402,29 @@ static int svga_get_shader_param(struct pipe_screen *screen, unsigned shader, en } +/** + * Implemnt pipe_screen::is_format_supported(). + * \param bindings bitmask of PIPE_BIND_x flags + */ static boolean svga_is_format_supported( struct pipe_screen *screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, - unsigned tex_usage) + unsigned bindings) { struct svga_screen *ss = svga_screen(screen); SVGA3dSurfaceFormat svga_format; SVGA3dSurfaceFormatCaps caps; SVGA3dSurfaceFormatCaps mask; - assert(tex_usage); + assert(bindings); if (sample_count > 1) { return FALSE; } - svga_format = svga_translate_format(ss, format, tex_usage); + svga_format = svga_translate_format(ss, format, bindings); if (svga_format == SVGA3D_FORMAT_INVALID) { return FALSE; } @@ -430,7 +434,7 @@ svga_is_format_supported( struct pipe_screen *screen, * visuals for all virtual hardware implementations. */ - if (tex_usage & PIPE_BIND_DISPLAY_TARGET) { + if (bindings & PIPE_BIND_DISPLAY_TARGET) { switch (svga_format) { case SVGA3D_A8R8G8B8: case SVGA3D_X8R8G8B8: @@ -456,13 +460,13 @@ svga_is_format_supported( struct pipe_screen *screen, svga_get_format_cap(ss, svga_format, &caps); mask.value = 0; - if (tex_usage & PIPE_BIND_RENDER_TARGET) { + if (bindings & PIPE_BIND_RENDER_TARGET) { mask.offscreenRenderTarget = 1; } - if (tex_usage & PIPE_BIND_DEPTH_STENCIL) { + if (bindings & PIPE_BIND_DEPTH_STENCIL) { mask.zStencil = 1; } - if (tex_usage & PIPE_BIND_SAMPLER_VIEW) { + if (bindings & PIPE_BIND_SAMPLER_VIEW) { mask.texture = 1; }