diff options
author | Ilia Mirkin <[email protected]> | 2014-10-05 12:35:51 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-10-14 12:33:38 -0400 |
commit | 5524af81365d51757ef68a8e62dbd426d0b07184 (patch) | |
tree | 66bd1218f11766de2e43b3c29cca828895f8dd29 /src/mesa/drivers/dri/nouveau | |
parent | abe3b3d1e019212b8496b21335ca03c0dbee6bb2 (diff) |
nouveau: 3d textures are unsupported, limit 3d levels to 1
Ideally there would be a swrast fallback, but the driver isn't ready for
that. This should avoid crashes if someone tries to use 3d textures
though.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Francisco Jerez <[email protected]>
Cc: [email protected]
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_context.c b/src/mesa/drivers/dri/nouveau/nouveau_context.c index 5be5ec5bc24..e1bb7e8096e 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_context.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_context.c @@ -189,6 +189,9 @@ nouveau_context_init(struct gl_context *ctx, gl_api api, ctx->Extensions.NV_texture_env_combine4 = true; ctx->Const.MaxColorAttachments = 1; + /* This effectively disables 3D textures */ + ctx->Const.Max3DTextureLevels = 1; + return GL_TRUE; } |