Loading...
Searching...
No Matches
graphicsCmds.h
1//
2// Copyright 2019 Pixar
3//
4// Licensed under the Apache License, Version 2.0 (the "Apache License")
5// with the following modification; you may not use this file except in
6// compliance with the Apache License and the following modification to it:
7// Section 6. Trademarks. is deleted and replaced with:
8//
9// 6. Trademarks. This License does not grant permission to use the trade
10// names, trademarks, service marks, or product names of the Licensor
11// and its affiliates, except as required to comply with Section 4(c) of
12// the License and to reproduce the content of the NOTICE file.
13//
14// You may obtain a copy of the Apache License at
15//
16// http://www.apache.org/licenses/LICENSE-2.0
17//
18// Unless required by applicable law or agreed to in writing, software
19// distributed under the Apache License with the above modification is
20// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21// KIND, either express or implied. See the Apache License for the specific
22// language governing permissions and limitations under the Apache License.
23//
24#ifndef PXR_IMAGING_HGI_GL_GRAPHICS_CMDS_H
25#define PXR_IMAGING_HGI_GL_GRAPHICS_CMDS_H
26
27#include "pxr/pxr.h"
28#include "pxr/base/gf/vec4i.h"
29#include "pxr/imaging/hgi/graphicsCmds.h"
30#include "pxr/imaging/hgiGL/api.h"
31#include "pxr/imaging/hgiGL/hgi.h"
32#include <cstdint>
33
34PXR_NAMESPACE_OPEN_SCOPE
35
37class HgiGLDevice;
38
44{
45public:
46 HGIGL_API
47 ~HgiGLGraphicsCmds() override;
48
54 HGIGL_API
55 void InsertFunctionOp(std::function<void(void)> const& fn);
56
57 HGIGL_API
58 void PushDebugGroup(const char* label) override;
59
60 HGIGL_API
61 void PopDebugGroup() override;
62
63 HGIGL_API
64 void SetViewport(GfVec4i const& vp) override;
65
66 HGIGL_API
67 void SetScissor(GfVec4i const& sc) override;
68
69 HGIGL_API
70 void BindPipeline(HgiGraphicsPipelineHandle pipeline) override;
71
72 HGIGL_API
73 void BindResources(HgiResourceBindingsHandle resources) override;
74
75 HGIGL_API
78 HgiShaderStage stages,
79 uint32_t bindIndex,
80 uint32_t byteSize,
81 const void* data) override;
82
83 HGIGL_API
85 HgiVertexBufferBindingVector const &bindings) override;
86
87 HGIGL_API
88 void Draw(
89 uint32_t vertexCount,
90 uint32_t baseVertex,
91 uint32_t instanceCount,
92 uint32_t baseInstance) override;
93
94 HGIGL_API
96 HgiBufferHandle const& drawParameterBuffer,
97 uint32_t drawBufferByteOffset,
98 uint32_t drawCount,
99 uint32_t stride) override;
100
101 HGIGL_API
103 HgiBufferHandle const& indexBuffer,
104 uint32_t indexCount,
105 uint32_t indexBufferByteOffset,
106 uint32_t baseVertex,
107 uint32_t instanceCount,
108 uint32_t baseInstance) override;
109
110 HGIGL_API
112 HgiBufferHandle const& indexBuffer,
113 HgiBufferHandle const& drawParameterBuffer,
114 uint32_t drawBufferByteOffset,
115 uint32_t drawCount,
116 uint32_t stride,
117 std::vector<uint32_t> const& drawParameterBufferUInt32,
118 uint32_t patchBaseVertexByteOffset) override;
119
120 HGIGL_API
121 void InsertMemoryBarrier(HgiMemoryBarrier barrier) override;
122
123protected:
124 friend class HgiGL;
125
126 HGIGL_API
128 HgiGLDevice* device,
129 HgiGraphicsCmdsDesc const& desc);
130
131 HGIGL_API
132 bool _Submit(Hgi* hgi, HgiSubmitWaitType wait) override;
133
134private:
135 HgiGLGraphicsCmds() = delete;
136 HgiGLGraphicsCmds & operator=(const HgiGLGraphicsCmds&) = delete;
137 HgiGLGraphicsCmds(const HgiGLGraphicsCmds&) = delete;
138
140 void _AddResolveToOps(HgiGLDevice* device);
141
142 bool _recording;
143 HgiGraphicsCmdsDesc _descriptor;
144 HgiPrimitiveType _primitiveType;
145 int _primitiveIndexSize;
146 HgiGLOpsVector _ops;
147 int _pushStack;
148 int32_t _restoreReadFramebuffer;
149 int32_t _restoreDrawFramebuffer;
150
151 // Cmds is used only one frame so storing multi-frame state on will not
152 // survive.
153};
154
155PXR_NAMESPACE_CLOSE_SCOPE
156
157#endif
Basic type for a vector of 4 int components.
Definition: vec4i.h:61
OpenGL implementation of GPU device.
Definition: device.h:46
OpenGL implementation of HgiGraphicsCmds.
Definition: graphicsCmds.h:44
HGIGL_API void SetScissor(GfVec4i const &sc) override
Only pixels that lie within the scissor box are modified by drawing commands.
HGIGL_API void InsertMemoryBarrier(HgiMemoryBarrier barrier) override
Inserts a barrier so that data written to memory by commands before the barrier is available to comma...
HGIGL_API void BindVertexBuffers(HgiVertexBufferBindingVector const &bindings) override
Binds the vertex buffer(s) that describe the vertex attributes.
HGIGL_API void BindResources(HgiResourceBindingsHandle resources) override
Bind resources such as textures and uniform buffers.
HGIGL_API void SetConstantValues(HgiGraphicsPipelineHandle pipeline, HgiShaderStage stages, uint32_t bindIndex, uint32_t byteSize, const void *data) override
Set Push / Function constants.
HGIGL_API void DrawIndexedIndirect(HgiBufferHandle const &indexBuffer, HgiBufferHandle const &drawParameterBuffer, uint32_t drawBufferByteOffset, uint32_t drawCount, uint32_t stride, std::vector< uint32_t > const &drawParameterBufferUInt32, uint32_t patchBaseVertexByteOffset) override
Records a indexed multi-draw command that reads the draw parameters from a provided drawParameterBuff...
HGIGL_API void SetViewport(GfVec4i const &vp) override
Set viewport [left, BOTTOM, width, height] - OpenGL coords.
HGIGL_API void InsertFunctionOp(std::function< void(void)> const &fn)
XXX This function is exposed temporarily for Hgi transition.
HGIGL_API void PopDebugGroup() override
Pop the last debug marker.
HGIGL_API void DrawIndexed(HgiBufferHandle const &indexBuffer, uint32_t indexCount, uint32_t indexBufferByteOffset, uint32_t baseVertex, uint32_t instanceCount, uint32_t baseInstance) override
Records a draw command that renders one or more instances of primitives using an indexBuffer starting...
HGIGL_API void BindPipeline(HgiGraphicsPipelineHandle pipeline) override
Bind a pipeline state object.
HGIGL_API void Draw(uint32_t vertexCount, uint32_t baseVertex, uint32_t instanceCount, uint32_t baseInstance) override
Records a draw command that renders one or more instances of primitives using the number of vertices ...
HGIGL_API void DrawIndirect(HgiBufferHandle const &drawParameterBuffer, uint32_t drawBufferByteOffset, uint32_t drawCount, uint32_t stride) override
Records a multi-draw command that reads the draw parameters from a provided drawParameterBuffer.
HGIGL_API void PushDebugGroup(const char *label) override
Push a debug marker.
OpenGL implementation of the Hydra Graphics Interface.
Definition: hgi.h:72
A graphics API independent abstraction of graphics commands.
Definition: graphicsCmds.h:48
Hydra Graphics Interface.
Definition: hgi.h:111
Describes the properties to begin a HgiGraphicsCmds.