diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-05-07 02:59:32 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-05-07 02:59:32 -0400 |
commit | 76fdae9018330aa5af0d57339baff3ca4834e1b5 (patch) | |
tree | 04fa3d95dcf68ae3fab4568cf2a13b2746ad5f6b /src/radeon_textured_videofuncs.c | |
parent | 23a8ada06a5b1ccc975e89f129c00382ecbf29df (diff) |
R3xx/R4xx tex vid: no need to check if IS_R300_3D
function is r3xx/r4xx specific already
Diffstat (limited to 'src/radeon_textured_videofuncs.c')
-rw-r--r-- | src/radeon_textured_videofuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_textured_videofuncs.c b/src/radeon_textured_videofuncs.c index 6e9ee2fd..bbc5caf9 100644 --- a/src/radeon_textured_videofuncs.c +++ b/src/radeon_textured_videofuncs.c @@ -2265,7 +2265,7 @@ FUNC_NAME(R300DisplayTexturedVideo)(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv) ErrorF("src: %d, %d, %d, %d\n", srcX, srcY, srcw, srch); #endif - if (IS_R300_3D && ((dstw+dsth) > 4021)) + if ((dstw+dsth) > 4021) use_quad = TRUE; /* * Set up the scissor area to that of the output size. |