BlinCT
BlinCTApril 25, 2020, 12:21 p.m.

Ошибка при работе со Scene Graph

Qt

Всем привет.
Так как paint уходит на вторйо план по скорости работы и отрисовки то решил переписать на scene graph все руботу.
И как бы все обьекты работают, но вот одна ошибка не дает покоя(замедление работы очень сильное), и возможно это влечет за собою замедление работы.

QMLIcon_QML_64 : Update called for a item without content
QMLIcon_QML_65 : Update called for a item without content
QMLIcon : Update called for a item without content
QMLIcon : Update called for a item without content
QMLIcon : Update called for a item without content
QMLIcon : Update called for a item without content

Сам код данного класса выглядит вот так, кидаю старую реализацию и новую

//void QMLIcon::paint(QPainter *painter)
//{
//    painter->save();
//    QRectF rect = boundingRect();
//
//    QPen pen(m_color);
//    painter->setPen(pen);
//
//    QBrush brush(m_color);
//    painter->setBrush(brush);
//

//    QTransform transform;
//    transform.translate(rect.center().x(), rect.center().y());
//    painter->setTransform(transform, true);
//
//    iconDatabase::drawIcon(painter, m_icon);
//    painter->restore();
//}

QSGNode *QMLIcon::updatePaintNode(QSGNode *oldNode, QQuickItem::UpdatePaintNodeData *updatePaintNodeData)
{
    Q_UNUSED(updatePaintNodeData)

    QImage canvas(boundingRect().width(), boundingRect().height(), QImage::Format_RGBA8888);
    canvas.fill(QColor("transparent"));

    QPainter painter(&canvas);
    painter.save();

    QPen pen(m_color);
    painter.setPen(pen);

    QBrush brush(m_color);
    painter.setBrush(brush);

    QTransform transform;
    transform.translate(boundingRect().center().x(), boundingRect().center().y());
    painter.setTransform(transform, true);

    iconDatabase::drawIcon(&painter, m_icon);
    painter.restore();

    auto pTexture = window()->createTextureFromImage(canvas);

    if(!oldNode)
    {
        m_pTextureNode = new QSGSimpleTextureNode;
        m_pTextureNode->setRect(boundingRect());
        m_pTextureNode->setTexture(pTexture);

        return m_pTextureNode;
    }

    m_pTextureNode->setTexture(pTexture);
    return oldNode;
}

Если кто знает как искать причину ошибки бууд признателен за помощь.
Спасибо.

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

2
BlinCT
  • April 25, 2020, 12:24 p.m.

Нашел где этот ворнинг выписывается woboq но вот почему

    Evgenii Legotckoi
    • April 26, 2020, 3:19 p.m.

    Привет. Не думаю, что мешать в кучу QPainter и отрисовку через OpenGL ноды - это вообще хорошая идея.
    QPainter сам по себе использует для отрисовки CPU, так что даже если вы и выполняете операции в методе updatePaintNode, то это не значит, что он будет использовать GPU для отрисовки. Так что тут как минимум очевидная просадка производительности на использовании QPainter, нужно для начала найти способ не использовать QPainter для создания текстуры.

      Comments

      Only authorized users can post comments.
      Please, Log in or Sign up
      AD

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:50points,
      • Rating points-4
      m

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:80points,
      • Rating points4
      m

      C ++ - Test 004. Pointers, Arrays and Loops

      • Result:20points,
      • Rating points-10
      Last comments
      i
      innorwallNov. 12, 2024, 9:12 a.m.
      Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
      i
      innorwallNov. 12, 2024, 5:23 a.m.
      QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
      i
      innorwallNov. 12, 2024, 2:50 a.m.
      Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
      i
      innorwallNov. 12, 2024, 1:19 a.m.
      Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
      i
      innorwallNov. 12, 2024, 12:55 a.m.
      PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
      Now discuss on the forum
      i
      innorwallNov. 12, 2024, 7:56 a.m.
      добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
      i
      innorwallNov. 11, 2024, 9:55 p.m.
      Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
      9
      9AnonimOct. 25, 2024, 7:10 p.m.
      Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

      Follow us in social networks