diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-12-03 17:31:25 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-12-03 17:31:25 -0500 |
commit | 941ac0d3ab839dc5aaaef2f3b7f5c7085b2894c5 (patch) | |
tree | d153d180a1b14293360611b182fef2ef1109b5a1 /src/radeon_textured_videofuncs.c | |
parent | 927aee181f3637bda1b761caf93fbc0652e1207b (diff) |
Make sure 3D state is emited when switching to 3D IB
- fixes bug 18864
Diffstat (limited to 'src/radeon_textured_videofuncs.c')
-rw-r--r-- | src/radeon_textured_videofuncs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/radeon_textured_videofuncs.c b/src/radeon_textured_videofuncs.c index 7a4ffc2e..63434c6f 100644 --- a/src/radeon_textured_videofuncs.c +++ b/src/radeon_textured_videofuncs.c @@ -142,10 +142,10 @@ FUNC_NAME(RADEONDisplayTexturedVideo)(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv RADEON_WAIT_3D_IDLECLEAN | RADEON_WAIT_DMA_GUI_IDLE); FINISH_ACCEL(); - } - if (!info->accel_state->XInited3D) - RADEONInit3DEngine(pScrn); + if (!info->accel_state->XInited3D) + RADEONInit3DEngine(pScrn); + } if (pPriv->bicubic_enabled) vtx_count = 6; |