summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/svga_tgsi.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-09-22 17:02:59 -0600
committerBrian Paul <brianp@vmware.com>2011-09-23 07:59:00 -0600
commit5f053bf4ae092df9e5ff6ab38caf9867e6fe46bf (patch)
tree17e87d1b8f619f81b3ff542229b8a6f3c6de0f78 /src/gallium/drivers/svga/svga_tgsi.c
parent681f92140c2f4170ec222a8213e0895c7fa8483a (diff)
downloadexternal_mesa3d-5f053bf4ae092df9e5ff6ab38caf9867e6fe46bf.zip
external_mesa3d-5f053bf4ae092df9e5ff6ab38caf9867e6fe46bf.tar.gz
external_mesa3d-5f053bf4ae092df9e5ff6ab38caf9867e6fe46bf.tar.bz2
svga: clean up return values and error codes
Previously we were using a hodge podge of int vs. pipe_enum and 0 vs. PIPE_OK. Some functions that always returned PIPE_OK were made void.
Diffstat (limited to 'src/gallium/drivers/svga/svga_tgsi.c')
-rw-r--r--src/gallium/drivers/svga/svga_tgsi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi.c b/src/gallium/drivers/svga/svga_tgsi.c
index 781fe63..a93eca6 100644
--- a/src/gallium/drivers/svga/svga_tgsi.c
+++ b/src/gallium/drivers/svga/svga_tgsi.c
@@ -175,7 +175,6 @@ svga_tgsi_translate( const struct svga_shader *shader,
{
struct svga_shader_result *result = NULL;
struct svga_shader_emitter emit;
- int ret = 0;
memset(&emit, 0, sizeof(emit));
@@ -183,7 +182,6 @@ svga_tgsi_translate( const struct svga_shader *shader,
emit.size = 1024;
emit.buf = MALLOC(emit.size);
if (emit.buf == NULL) {
- ret = PIPE_ERROR_OUT_OF_MEMORY;
goto fail;
}