File: hellovulkanwidget.qdoc

package info (click to toggle)
qt6-base 6.9.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 316,720 kB
  • sloc: cpp: 2,112,334; ansic: 381,848; xml: 142,587; python: 21,632; java: 8,505; asm: 4,009; javascript: 2,290; sh: 1,657; perl: 1,028; makefile: 131
file content (27 lines) | stat: -rw-r--r-- 1,148 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

/*!
    \example hellovulkanwidget
    \meta installpath vulkan
    \ingroup examples-vulkan
    \title Hello Vulkan Widget Example
    \brief Shows the usage of QVulkanWindow in QWidget applications.
    \examplecategory {Graphics}

    The \e{Hello Vulkan Widget Example} is a variant of \l hellovulkantriangle
    that embeds the QVulkanWindow into a QWidget-based user interface using
    QWidget::createWindowContainer().

    \image hellovulkanwidget.png

    The code to set up the Vulkan pipeline and render the triangle is the same
    as in \l hellovulkantriangle. In addition, this example demonstrates
    another feature of QVulkanWindow: reading the image content back from the
    color buffer into a QImage. By clicking the Grab button, the example
    renders the next frame and follows it up with a transfer operation in order
    to get the swapchain color buffer content copied into host accessible
    memory. The image is then saved to disk via QImage::save().

    \include examples-run.qdocinc
*/