- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
  Not Evaluated                     
     - 
    None
 - 
    6.10.0
 - 
    None
 
QSGTexture *texture = window()->createTextureFromImage(QImage(urlToLocalFileOrQrc(m_source))); texture->setHorizontalWrapMode(QSGTexture::Repeat); texture->setVerticalWrapMode(QSGTexture::Repeat); node = window()->createImageNode(); node->setTexture(texture); node->setRect(0, 0, width(), height()); node->setSourceRect(0, 0, width(), height());
the following code snippet doesn't work as expected. With the repeat wrap mode, it looks like the "clamp to edge" mode is still used.
I've attached a simple application that demonstrates the issue. The expected result is that the gradient pattern is repeated.