mesa: fix maximum allowed proxy texture size condition
authorAnuj Phogat <anuj.phogat@gmail.com>
Thu, 26 Jan 2012 03:05:45 +0000 (19:05 -0800)
committerAnuj Phogat <anuj.phogat@gmail.com>
Thu, 2 Feb 2012 02:49:22 +0000 (18:49 -0800)
commit15986d21ebaaeedb234b066edba5cf7f6ea87a3c
tree0112fb0c7e701358ed097567f15a524dc8cb3d47
parentcff0eac702e0070d4d7f0e2ae5f785ec10597d4d
mesa: fix maximum allowed proxy texture size condition

width, height parameter in glTexImage2D() includes: texture image
width + 2 * border (if any). So when doing the texture size check
in _mesa_test_proxy_teximage() width and height should not exceed
maximum supported size for target texture type.
i.e. 1 << (ctx->Const.MaxTextureLevels - 1)

Texture border is anyway stripped out before it is given to intel
or gallium drivers.

This patch fixes Intel oglconform test case: max_values
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=44970

Note: This is a candidate for mesa 8.0 branch.

Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Ian Romanick <idr@freedesktop.org>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/main/teximage.c