summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi/tgsi_ppc.h
diff options
context:
space:
mode:
authorAdam Jackson <[email protected]>2013-01-02 12:44:49 -0500
committerAdam Jackson <[email protected]>2013-01-20 17:12:47 -0500
commit30530ee9acc356ea94466e9d71661068f4787433 (patch)
treefbbf1c3939c9759e60dcadad193b589e3de1e62f /src/gallium/auxiliary/tgsi/tgsi_ppc.h
parent410b58c7bfcebbc866d2dc4ab32c6f23b55d383b (diff)
gallium: Remove ppc asm backend
The vs part hasn't been wired up since tgsi_sse2 was disabled in: commit 4eb3225b38ce12cb34ab3d90804c9683bd7b4ed3 Author: José Fonseca <[email protected]> Date: Tue Nov 8 00:10:47 2011 +0000 Remove tgsi_sse2. And it would certainly not work correctly in its current state: draw/draw_vs_ppc.c: In function ‘draw_create_vs_ppc’: draw/draw_vs_ppc.c:190:24: warning: assignment from incompatible pointer type [enabled by default] As with the sse2 backend, this should be done in llvm anyway. Reviewed-by: Brian Paul <[email protected]> Signed-off-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_ppc.h')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_ppc.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ppc.h b/src/gallium/auxiliary/tgsi/tgsi_ppc.h
deleted file mode 100644
index 829ec075e7f..00000000000
--- a/src/gallium/auxiliary/tgsi/tgsi_ppc.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/**************************************************************************
- *
- * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
- * All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sub license, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial portions
- * of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
- * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
- * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- **************************************************************************/
-
-#ifndef TGSI_PPC_H
-#define TGSI_PPC_H
-
-#if defined __cplusplus
-extern "C" {
-#endif
-
-struct tgsi_token;
-struct ppc_function;
-
-extern const float ppc_builtin_constants[];
-
-
-boolean
-tgsi_emit_ppc(const struct tgsi_token *tokens,
- struct ppc_function *function,
- float (*immediates)[4],
- boolean do_swizzles);
-
-#if defined __cplusplus
-}
-#endif
-
-#endif /* TGSI_PPC_H */