diff options
author | Dave Airlie <[email protected]> | 2011-03-01 14:55:35 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-03-01 15:08:50 +1000 |
commit | 929be6eb95c33d5885a89b36dbc82db64c1344fe (patch) | |
tree | 157c587b2de38da0bb2206b8e9fe88f550b02ee1 /src/gallium/drivers/r600/evergreen_state.c | |
parent | ea4a19c3920a81644138ba84be904b89397dd169 (diff) |
r600g: start using drm minor version to enable things.
If the drm minor version is > 9 (i.e. whats in drm-next),
we enable s3tc + texture tiling by default now.
this changes R600_FORCE_TILING to R600_TILING which can
be set to false to disable tiling on working drm.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/evergreen_state.c')
-rw-r--r-- | src/gallium/drivers/r600/evergreen_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/evergreen_state.c b/src/gallium/drivers/r600/evergreen_state.c index a388476b017..4206b4a201d 100644 --- a/src/gallium/drivers/r600/evergreen_state.c +++ b/src/gallium/drivers/r600/evergreen_state.c @@ -376,7 +376,7 @@ static struct pipe_sampler_view *evergreen_create_sampler_view(struct pipe_conte swizzle[1] = state->swizzle_g; swizzle[2] = state->swizzle_b; swizzle[3] = state->swizzle_a; - format = r600_translate_texformat(state->format, + format = r600_translate_texformat(ctx->screen, state->format, swizzle, &word4, &yuv_format); if (format == ~0) { |