r100/r200/r600: fix typo in 2b1d5ea4f0

This commit is contained in:
Alex Deucher 2010-01-19 01:47:04 -05:00
parent 2b1d5ea4f0
commit ef631104d5
3 changed files with 3 additions and 3 deletions

View File

@ -332,7 +332,7 @@ GLboolean r200_blit(struct r200_context *r200,
unsigned reg_height,
unsigned flip_y)
{
if (is_blit_supported(dst_mesaformat))
if (!is_blit_supported(dst_mesaformat))
return GL_FALSE;
/* Make sure that colorbuffer has even width - hw limitation */

View File

@ -1582,7 +1582,7 @@ GLboolean r600_blit(context_t *context,
{
int id = 0;
if (is_blit_supported(dst_mesaformat))
if (!is_blit_supported(dst_mesaformat))
return GL_FALSE;
if (src_bo == dst_bo) {

View File

@ -328,7 +328,7 @@ GLboolean r100_blit(struct r100_context *r100,
unsigned reg_height,
unsigned flip_y)
{
if (is_blit_supported(dst_mesaformat))
if (!is_blit_supported(dst_mesaformat))
return GL_FALSE;
/* Make sure that colorbuffer has even width - hw limitation */