mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-02 04:48:26 +02:00
radeon: fix span init needs more work
This commit is contained in:
parent
45496122b7
commit
edbe1fac6a
4 changed files with 3 additions and 2 deletions
|
|
@ -519,6 +519,7 @@ GLboolean r200CreateContext( const __GLcontextModes *glVisual,
|
|||
#endif
|
||||
/* plug in a few more device driver functions */
|
||||
/* XXX these should really go right after _mesa_init_driver_functions() */
|
||||
radeonInitSpanFuncs( ctx );
|
||||
r200InitPixelFuncs( ctx );
|
||||
r200InitTnlFuncs( ctx );
|
||||
r200InitState( rmesa );
|
||||
|
|
|
|||
|
|
@ -429,6 +429,7 @@ GLboolean r300CreateContext(const __GLcontextModes * glVisual,
|
|||
driQueryOptionb(&r300->radeon.optionCache,
|
||||
"disable_lowimpact_fallback");
|
||||
|
||||
radeonInitSpanFuncs( ctx );
|
||||
r300InitCmdBuf(r300);
|
||||
r300InitState(r300);
|
||||
if (!(screen->chip_flags & RADEON_CHIPSET_TCL))
|
||||
|
|
|
|||
|
|
@ -854,8 +854,6 @@ GLboolean radeonInitContext(radeonContextPtr radeon,
|
|||
|
||||
(*sPriv->systemTime->getUST) (&radeon->swap_ust);
|
||||
|
||||
radeonInitSpanFuncs( ctx );
|
||||
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -446,6 +446,7 @@ radeonCreateContext( const __GLcontextModes *glVisual,
|
|||
_mesa_enable_extension( ctx, "GL_NV_texture_rectangle");
|
||||
|
||||
/* XXX these should really go right after _mesa_init_driver_functions() */
|
||||
radeonInitSpanFuncs( ctx );
|
||||
radeonInitIoctlFuncs( ctx );
|
||||
radeonInitStateFuncs( ctx );
|
||||
radeonInitState( rmesa );
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue