Home | Info | Community | Development | myReactOS | Contact Us
[static]
Helper function for determining which texture object (1D, 2D, cube, etc) should actually be used.
Definition at line 422 of file texstate.c.
Referenced by update_texture_state().
{ if (!texUnit->_ReallyEnabled && (enableBits & textureBit)) { if (!texObj->_Complete) { _mesa_test_texobj_completeness(ctx, texObj); } if (texObj->_Complete) { texUnit->_ReallyEnabled = textureBit; texUnit->_Current = texObj; update_texture_compare_function(ctx, texObj); } } }