| 507 | } |
| 508 | |
| 509 | void TypographyApp::SetIncrementalTextUpdate(bool is_incremental_text_update) |
| 510 | { |
| 511 | if (m_settings.is_incremental_text_update == is_incremental_text_update) |
| 512 | return; |
| 513 | |
| 514 | m_settings.is_incremental_text_update = is_incremental_text_update; |
| 515 | for(const Ptr<gui::TextItem>& text_ptr : m_texts) |
| 516 | { |
| 517 | text_ptr->SetIncrementalUpdate(is_incremental_text_update); |
| 518 | } |
| 519 | |
| 520 | UpdateParametersText(); |
| 521 | } |
| 522 | |
| 523 | void TypographyApp::OnContextReleased(rhi::IContext& context) |
| 524 | { |
no test coverage detected