6#include "QskTextureRenderer.h"
8#include "QskInternalMacros.h"
10#include <qopenglcontext.h>
11#include <qopenglframebufferobject.h>
12#include <qopenglpaintdevice.h>
17#include <qquickwindow.h>
20#include <private/qsgplaintexture_p.h>
21#include <private/qopenglframebufferobject_p.h>
24#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
25 #include <qquickopenglutils.h>
28static GLuint qskTakeTexture( QOpenGLFramebufferObject& fbo )
39 virtual ~MyFBO() =
default;
40 QScopedPointer< QOpenGLFramebufferObjectPrivate > d_ptr;
43 static_assert(
sizeof( MyFBO ) ==
sizeof( QOpenGLFramebufferObject ),
44 "Bad cast: QOpenGLFramebufferObject does not match" );
46 auto& attachment =
reinterpret_cast< MyFBO*
>( &fbo )->d_ptr->colorAttachments[0];
47 auto guard = attachment.guard;
49 const auto textureId = fbo.takeTexture();
53 class MyGuard :
public QOpenGLSharedResourceGuard
56 void invalidateTexture() { invalidateResource(); }
59 reinterpret_cast< MyGuard*
>( guard )->invalidateTexture();
62 attachment.guard = guard;
67bool QskTextureRenderer::isOpenGLWindow(
const QQuickWindow* window )
69 if ( window ==
nullptr )
72 const auto renderer = window->rendererInterface();
73 switch( renderer->graphicsApi() )
75 case QSGRendererInterface::OpenGL:
76#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
77 case QSGRendererInterface::OpenGLRhi:
86void QskTextureRenderer::setTextureId( QQuickWindow* window,
87 quint32 textureId,
const QSize& size, QSGTexture* texture )
89 auto plainTexture = qobject_cast< QSGPlainTexture* >( texture );
90 if ( plainTexture ==
nullptr )
93 auto rhi = qskRenderingHardwareInterface( window );
95#if QT_VERSION >= QT_VERSION_CHECK( 6, 4, 0 )
97 const uint nativeFormat = 0;
98 plainTexture->setTextureFromNativeTexture(
99 rhi, quint64( textureId ), 0, nativeFormat, size, {}, {} );
101#elif QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
102 plainTexture->setTextureFromNativeTexture(
103 rhi, quint64( textureId ), 0, size, {}, {} );
108 plainTexture->setTextureFromNativeObject( rhi,
109 QQuickWindow::NativeObjectTexture, &textureId, 0, size,
false );
113 plainTexture->setTextureId( textureId );
114 plainTexture->setTextureSize( size );
119quint32 QskTextureRenderer::createPaintedTextureGL(
137 window->beginExternalCommands();
139#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
140 QQuickOpenGLUtils::resetOpenGLState();
142 window->resetOpenGLState();
145 auto context = QOpenGLContext::currentContext();
147 QOpenGLFramebufferObjectFormat format1;
148 format1.setAttachment( QOpenGLFramebufferObject::CombinedDepthStencil );
150 format1.setSamples( context->format().samples() );
152 QOpenGLFramebufferObject multisampledFbo( size, format1 );
154 QOpenGLPaintDevice pd( size );
155 pd.setPaintFlipped(
true );
158 QPainter painter( &pd );
160 painter.setCompositionMode( QPainter::CompositionMode_Source );
161 painter.fillRect( 0, 0, size.width(), size.height(), Qt::transparent );
162 painter.setCompositionMode( QPainter::CompositionMode_SourceOver );
164 const auto ratio = window->effectiveDevicePixelRatio();
166 painter.scale( ratio, ratio );
167 helper->paint( &painter, size / ratio );
170 if ( format1.samples() > 0 )
177 painter.setRenderHint( QPainter::Antialiasing,
true );
182 QOpenGLFramebufferObjectFormat format2;
183 format2.setAttachment( QOpenGLFramebufferObject::NoAttachment );
185 QOpenGLFramebufferObject fbo( size, format2 );
187 const QRect fboRect( 0, 0, size.width(), size.height() );
189 QOpenGLFramebufferObject::blitFramebuffer(
190 &fbo, fboRect, &multisampledFbo, fboRect );
192 window->endExternalCommands();
194 return qskTakeTexture( fbo );
197static QSGTexture* qskCreateTextureRaster( QQuickWindow* window,
200 const auto ratio = window ? window->effectiveDevicePixelRatio() : 1.0;
202 QImage image( size * ratio, QImage::Format_RGBA8888_Premultiplied );
203 image.fill( Qt::transparent );
206 QPainter painter( &image );
212 painter.scale( ratio, ratio );
214 helper->paint( &painter, size );
217 return window->createTextureFromImage( image, QQuickWindow::TextureHasAlphaChannel );
220QSGTexture* QskTextureRenderer::createPaintedTexture(
221 QQuickWindow* window,
const QSize& size, PaintHelper* helper )
223 if ( isOpenGLWindow( window ) )
225 const auto textureId = createPaintedTextureGL( window, size, helper );
227 auto texture =
new QSGPlainTexture;
228 texture->setHasAlphaChannel(
true );
229 texture->setOwnsTexture(
true );
231 setTextureId( window, textureId, size, texture );
237 return qskCreateTextureRaster( window, size, helper );