summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-21 21:05:11 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-21 21:05:11 +0100
commit9a0e6860d3b4602515f39593ed9af00cee7bb106 (patch)
treef75bf3a8411b6ff731be3515f356b625fd20ee11 /src
parente406ad5912985920a0d796f1ada58b40316590ed (diff)
cso: disable not-really-working cso_set_*_shader() funcs
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/cso_cache/cso_context.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c
index e6366e7b14..3840dd2239 100644
--- a/src/gallium/auxiliary/cso_cache/cso_context.c
+++ b/src/gallium/auxiliary/cso_cache/cso_context.c
@@ -432,6 +432,9 @@ void cso_set_fragment_shader_handle(struct cso_context *ctx,
}
+/* Not really working:
+ */
+#if 0
void cso_set_fragment_shader(struct cso_context *ctx,
const struct pipe_shader_state *templ)
{
@@ -465,6 +468,7 @@ void cso_set_fragment_shader(struct cso_context *ctx,
cso_set_fragment_shader_handle( ctx, handle );
}
+#endif
void cso_save_fragment_shader(struct cso_context *ctx)
{
@@ -493,7 +497,9 @@ void cso_set_vertex_shader_handle(struct cso_context *ctx,
}
-
+/* Not really working:
+ */
+#if 0
void cso_set_vertex_shader(struct cso_context *ctx,
const struct pipe_shader_state *templ)
{
@@ -522,6 +528,7 @@ void cso_set_vertex_shader(struct cso_context *ctx,
cso_set_vertex_shader_handle( ctx, handle );
}
+#endif