Files
.github
LICENSES
bin
cmake
coin
config.tests
dist
doc
examples
lib
libexec
mkspecs
qmake
src
tests
auto
baseline
benchmarks
global
libfuzzer
manual
android_content_uri
cmake
cocoa
corelib
diaglib
dialogs
embeddedintoforeignwindow
examples
filetest
findfiles
foreignwindows
gestures
highdpi
inputmethodhints
ios_assets
keypadnavigation
lance
markdown
mkspecs
network_remote_stresstest
network_stresstest
permissions
qcursor
qdesktopservices
qglyphruns
qgraphicsitem
qgraphicsitemgroup
qgraphicslayout
qhttpnetworkconnection
qimagereader
qlayout
qlocale
qmetatype
qmimedatabase
qnetconmonitor
qnetworkaccessmanager
qnetworkinformation
qnetworkreply
qopenglcontext
qopengltextureblitter
CMakeLists.txt
main.cpp
qopengltextureblitter.pro
qopengltextureblitwindow.cpp
qopengltextureblitwindow.h
qopenglwidget
qopenglwindow
qprintdevice_dump
qscreen
qscreen_xrandr
qssloptions
qsslsocket
qstorageinfo
qsysinfo
qt_poll
qtabbar
qtabletevent
qtbug-52641
qtbug-8933
qtexteditlist
qtexttableborders
qtouchevent
qvulkaninstance
qwidget_zorder
repaint
rhi
shortcuts
socketengine
startsystemmove
stereographicsview
textrendering
touch
touchGraphicsItem
transientwindow
triangulator
unc
wasm
widgetgrab
widgets
windowactivation
windowchildgeometry
windowflags
windowgeometry
windowmask
windowmodality
windowtransparency
xcb_gl_integration
xembed
xmlstreamlint
CMakeLists.txt
manual.pro
shared
testserver
CMakeLists.txt
README
util
.QT-ENTERPRISE-LICENSE-AGREEMENT
.cmake.conf
.gitattributes
.lgtm.yml
.release-timestamp
.tag
CMakeLists.txt
conanfile.py
config_help.txt
configure
configure.bat
configure.cmake
dependencies.yaml
qt_cmdline.cmake
sync.profile
qt6windows7/tests/manual/qopengltextureblitter/main.cpp
2023-10-29 23:33:08 +01:00

16 lines
364 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "qopengltextureblitwindow.h"
#include <QtGui/QGuiApplication>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
QOpenGLTextureBlitWindow window;
window.show();
return app.exec();
}