1dd8b5ceec
qrhi.h, qshader.h, qshaderdescription.h (and qshaderbaker.h from shadertools; done separately) become "RHI APIs", following the concept of QPA APIs. Mirror completely what is done for QPA headers, but using the "rhi" prefix for the headers. This involves updating syncqt to handle the new category of headers. (a note on the regex: matching everything starting with "qrhi" is not acceptable due to incorrectly matching existing and future headers, hence specifying the four header names explicitly) There is going to be one difference to QPA: the documentation for everything RHI is going to be public and part of the regular docs, not hidden with \internal. In addition to the header renaming and adding the comments and documentation notes and warnings, there is one significant change here: there is no longer a need to do API-specific includes, such as qrhid3d11[_p].h, qrhivulkan[_p].h, etc. These are simply merged into a single header that is then included from qrhi.h. This means that users within Qt, and any future applications can just do #include <rhi/qrhi.h> (or rhi/qshader.h if the QRhi stuff is not relevant), no other headers are needed. There are no changes to functionality in this patch. Only the documentation is expanded, quite a lot, to eliminate all qdoc warnings and make the generated API docs complete. An example, with a quite extensive doc page is added as well. Task-number: QTBUG-113331 Change-Id: I91c749826348f14320cb335b1c83e9d1ea2b1d8b Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
// Copyright (C) 2018 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef TRIANGLERENDERER_H
|
|
#define TRIANGLERENDERER_H
|
|
|
|
#include <rhi/qrhi.h>
|
|
|
|
class TriangleRenderer
|
|
{
|
|
public:
|
|
void setRhi(QRhi *r) { m_r = r; }
|
|
void setSampleCount(int samples) { m_sampleCount = samples; }
|
|
int sampleCount() const { return m_sampleCount; }
|
|
void setTranslation(const QVector3D &v) { m_translation = v; }
|
|
void setScale(float f) { m_scale = f; }
|
|
void setDepthWrite(bool enable) { m_depthWrite = enable; }
|
|
void setColorAttCount(int count) { m_colorAttCount = count; }
|
|
QRhiGraphicsPipeline *pipeline() const { return m_ps; }
|
|
void initResources(QRhiRenderPassDescriptor *rp);
|
|
void releaseResources();
|
|
void resize(const QSize &pixelSize);
|
|
void queueResourceUpdates(QRhiResourceUpdateBatch *resourceUpdates);
|
|
void queueDraw(QRhiCommandBuffer *cb, const QSize &outputSizeInPixels);
|
|
|
|
private:
|
|
QRhi *m_r;
|
|
|
|
QRhiBuffer *m_vbuf = nullptr;
|
|
bool m_vbufReady = false;
|
|
QRhiBuffer *m_ubuf = nullptr;
|
|
QRhiShaderResourceBindings *m_srb = nullptr;
|
|
QRhiGraphicsPipeline *m_ps = nullptr;
|
|
|
|
QVector3D m_translation;
|
|
float m_scale = 1;
|
|
bool m_depthWrite = false;
|
|
int m_colorAttCount = 1;
|
|
QMatrix4x4 m_proj;
|
|
float m_rotation = 0;
|
|
float m_opacity = 1;
|
|
int m_opacityDir = -1;
|
|
int m_sampleCount = 1; // no MSAA by default
|
|
};
|
|
|
|
#endif
|