diff options
author | Stéphane Marchesin <[email protected]> | 2011-06-03 17:03:37 -0700 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2011-06-06 12:35:59 -0700 |
commit | 893b92adffe25a42468cb310dc5d13642472f0cb (patch) | |
tree | 67f9349b3a5e744f97dcb34748ef241fe2c5aedc | |
parent | 3d3ecb8520ccca0863026a94e7fda9840aff6c0a (diff) |
i915g: add missing and unsupported PIPE_CAPs to avoid debug messages.
-rw-r--r-- | src/gallium/drivers/i915/i915_screen.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915/i915_screen.c b/src/gallium/drivers/i915/i915_screen.c index da96b420f2c..c86baa58b28 100644 --- a/src/gallium/drivers/i915/i915_screen.c +++ b/src/gallium/drivers/i915/i915_screen.c @@ -134,6 +134,11 @@ i915_get_param(struct pipe_screen *screen, enum pipe_cap cap) case PIPE_CAP_TEXTURE_MIRROR_CLAMP: case PIPE_CAP_TEXTURE_SWIZZLE: case PIPE_CAP_TIMER_QUERY: + case PIPE_CAP_SM3: + case PIPE_CAP_SEAMLESS_CUBE_MAP: + case PIPE_CAP_SEAMLESS_CUBE_MAP_PER_TEXTURE: + case PIPE_CAP_FRAGMENT_COLOR_CLAMP_CONTROL: + case PIPE_CAP_MIXED_COLORBUFFER_FORMATS: return 0; /* Features we can lie about (boolean caps). */ |