summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-08 10:08:24 -0700
committerBrian <brian.paul@tungstengraphics.com>2007-11-08 10:08:24 -0700
commit548eddc964c99e24f45ce88cd69f3d9af5aeab1a (patch)
tree648bb4294dd4283882ade0e3462f78de6012cec1
parentdca71c40ea6ae70c6af380653df5b1073dfc9475 (diff)
enable PIPE_CAP_TEXTURE_SHADOW_MAP (but not quite working yet)
-rw-r--r--src/mesa/pipe/i915simple/i915_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/i915simple/i915_context.c b/src/mesa/pipe/i915simple/i915_context.c
index 9f11fe53857..4a5b6bec61f 100644
--- a/src/mesa/pipe/i915simple/i915_context.c
+++ b/src/mesa/pipe/i915simple/i915_context.c
@@ -130,7 +130,7 @@ i915_get_param(struct pipe_context *pipe, int param)
case PIPE_CAP_OCCLUSION_QUERY:
return 0;
case PIPE_CAP_TEXTURE_SHADOW_MAP:
- return 0;
+ return 1;
case PIPE_CAP_MAX_TEXTURE_2D_LEVELS:
return 11; /* max 1024x1024 */
case PIPE_CAP_MAX_TEXTURE_3D_LEVELS: