mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
Qt/input: update buttons at 100 hz instead of 1000 hz.
This reduces cpu usage without any noticeable drawback.
This commit is contained in:
parent
cb122819ae
commit
72cccb691c
@ -560,7 +560,7 @@ void pad_settings_dialog::InitButtons()
|
||||
|
||||
while (thread_ctrl::state() != thread_state::aborting)
|
||||
{
|
||||
thread_ctrl::wait_for(1000);
|
||||
thread_ctrl::wait_for(10000);
|
||||
|
||||
if (m_input_thread_state != input_thread_state::active)
|
||||
{
|
||||
@ -796,7 +796,7 @@ void pad_settings_dialog::ReactivateButtons()
|
||||
ui->chooseProduct->setFocusPolicy(Qt::WheelFocus);
|
||||
}
|
||||
|
||||
void pad_settings_dialog::RepaintPreviewLabel(QLabel* l, int deadzone, int anti_deadzone, int desired_width, int x, int y, int squircle, double multiplier) const
|
||||
void pad_settings_dialog::RepaintPreviewLabel(QLabel* label, int deadzone, int anti_deadzone, int desired_width, int x, int y, int squircle, double multiplier) const
|
||||
{
|
||||
desired_width = 100; // Let's keep a fixed size for these labels for now
|
||||
const qreal deadzone_max = m_handler ? m_handler->thumb_max : 255; // 255 used as fallback. The deadzone circle shall be small.
|
||||
@ -884,7 +884,7 @@ void pad_settings_dialog::RepaintPreviewLabel(QLabel* l, int deadzone, int anti_
|
||||
|
||||
painter.end();
|
||||
|
||||
l->setPixmap(pixmap);
|
||||
label->setPixmap(pixmap);
|
||||
}
|
||||
|
||||
void pad_settings_dialog::keyPressEvent(QKeyEvent *keyEvent)
|
||||
@ -1624,7 +1624,7 @@ void pad_settings_dialog::ChangeHandler()
|
||||
if (ui->chooseDevice->isEnabled() && ui->chooseDevice->currentIndex() >= 0)
|
||||
{
|
||||
start_input_thread();
|
||||
m_timer_input.start(1);
|
||||
m_timer_input.start(10);
|
||||
m_timer_pad_refresh.start(1000);
|
||||
}
|
||||
}
|
||||
|
@ -207,7 +207,7 @@ private:
|
||||
void ReloadButtons();
|
||||
|
||||
/** Repaints a stick deadzone preview label */
|
||||
void RepaintPreviewLabel(QLabel* l, int deadzone, int anti_deadzone, int desired_width, int x, int y, int squircle, double multiplier) const;
|
||||
void RepaintPreviewLabel(QLabel* label, int deadzone, int anti_deadzone, int desired_width, int x, int y, int squircle, double multiplier) const;
|
||||
|
||||
QString GetLocalizedPadHandler(const QString& original, pad_handler handler);
|
||||
QString GetLocalizedPadName(pad_handler handler, const QString& original, usz index);
|
||||
|
Loading…
Reference in New Issue
Block a user