Signed-off-by: Chris Forbes <chr...@ijw.co.nz> --- src/mesa/drivers/dri/i965/brw_context.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index df0f8d6..40f7ff3 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -209,10 +209,18 @@ brwCreateContext(int api, ctx->Const.MaxTransformFeedbackSeparateComponents = BRW_MAX_SOL_BINDINGS / BRW_MAX_SOL_BUFFERS; - if (intel->gen == 6) + if (intel->gen == 6) { ctx->Const.MaxSamples = 4; - else if (intel->gen >= 7) + ctx->Const.MaxColorTextureSamples = 4; + ctx->Const.MaxDepthTextureSamples = 4; + ctx->Const.MaxIntegerSamples = 4; + } + else if (intel->gen >= 7) { ctx->Const.MaxSamples = 8; + ctx->Const.MaxColorTextureSamples = 8; + ctx->Const.MaxDepthTextureSamples = 8; + ctx->Const.MaxIntegerSamples = 8; + } /* if conformance mode is set, swrast can handle any size AA point */ ctx->Const.MaxPointSizeAA = 255.0; -- 1.8.0.3 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev