diff --git a/src/DancingCharacters.cpp b/src/DancingCharacters.cpp index 265691d18b..82186994bc 100644 --- a/src/DancingCharacters.cpp +++ b/src/DancingCharacters.cpp @@ -349,6 +349,8 @@ void DancingCharacters::DrawPrimitives() DISPLAY->SetLightOff( 0 ); DISPLAY->SetLighting( false ); + + DISPLAY->ClearZBuffer(); } diff --git a/src/Model.cpp b/src/Model.cpp index b285611649..55a6de8da5 100644 --- a/src/Model.cpp +++ b/src/Model.cpp @@ -287,6 +287,7 @@ bool Model::EarlyAbortDraw() const void Model::DrawCelShaded() { + // TODO: use shell shader for outline. this->SetGlow(RageColor(0,0,0,1)); this->SetDiffuseAlpha(0); DISPLAY->SetPolygonMode( POLYGON_LINE ); diff --git a/src/archutils/Darwin/MouseDevice.cpp b/src/archutils/Darwin/MouseDevice.cpp index d7c647f932..7980771389 100644 --- a/src/archutils/Darwin/MouseDevice.cpp +++ b/src/archutils/Darwin/MouseDevice.cpp @@ -104,11 +104,11 @@ void MouseDevice::GetButtonPresses( vector& vPresses, IOHIDElementC const Mouse& m = m_Mouse; if( m.x_axis == cookie ) { - INPUTFILTER->UpdateCursorLocation((float)m.x_axis,(float)m.y_axis); +// INPUTFILTER->UpdateCursorLocation(m.x_axis,m.y_axis); } else if( m.y_axis == cookie ) { - INPUTFILTER->UpdateCursorLocation((float)m.x_axis,(float)m.y_axis); +// INPUTFILTER->UpdateCursorLocation((float)m.x_axis,(float)m.y_axis); } else if( m.z_axis == cookie ) {