diff options
author | Eric Anholt <[email protected]> | 2010-06-04 12:43:15 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-06-04 12:43:15 -0700 |
commit | 18a6e5ee73c5cef283c6bef906e5f8e4f60d4000 (patch) | |
tree | c5c20e34841c522bbcd08b806e3096d3fb3b218d /src/mesa | |
parent | a663a6371850da64cab33ed8dc5892e3bff06294 (diff) |
intel: Fix intel_compressed_num_bytes for FXT1 after I broke it.
Fixes piglit fxt1-teximage since
7554b83a21bd62b20df5a7327b69f08108ac9ab6, and also OGLC tests that hit
FXT1 with a million other things.
Bug #28184.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_tex_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_tex_format.c b/src/mesa/drivers/dri/intel/intel_tex_format.c index 610a169beb2..b42d6f3155c 100644 --- a/src/mesa/drivers/dri/intel/intel_tex_format.c +++ b/src/mesa/drivers/dri/intel/intel_tex_format.c @@ -214,5 +214,5 @@ int intel_compressed_num_bytes(GLuint mesaFormat) block_size = _mesa_get_format_bytes(mesaFormat); _mesa_get_format_block_size(mesaFormat, &bw, &bh); - return block_size / bh; + return block_size / bw; } |