Loading...
Searching...
No Matches
graphicsCmds.h
1//
2// Copyright 2019 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef PXR_IMAGING_HGI_GL_GRAPHICS_CMDS_H
8#define PXR_IMAGING_HGI_GL_GRAPHICS_CMDS_H
9
10#include "pxr/pxr.h"
11#include "pxr/base/gf/vec4i.h"
12#include "pxr/imaging/hgi/graphicsCmds.h"
13#include "pxr/imaging/hgiGL/api.h"
14#include "pxr/imaging/hgiGL/hgi.h"
15#include <cstdint>
16
17PXR_NAMESPACE_OPEN_SCOPE
18
20class HgiGLDevice;
21
27{
28public:
29 HGIGL_API
30 ~HgiGLGraphicsCmds() override;
31
37 HGIGL_API
38 void InsertFunctionOp(std::function<void(void)> const& fn);
39
40 HGIGL_API
41 void PushDebugGroup(const char* label,
42 const GfVec4f& color = s_graphicsDebugColor) override;
43
44 HGIGL_API
45 void PopDebugGroup() override;
46
47 HGIGL_API
49 const char* label,
50 const GfVec4f& color = s_markerDebugColor) override;
51
52 HGIGL_API
53 void SetViewport(GfVec4i const& vp) override;
54
55 HGIGL_API
56 void SetScissor(GfVec4i const& sc) override;
57
58 HGIGL_API
59 void BindPipeline(HgiGraphicsPipelineHandle pipeline) override;
60
61 HGIGL_API
62 void BindResources(HgiResourceBindingsHandle resources) override;
63
64 HGIGL_API
67 HgiShaderStage stages,
68 uint32_t bindIndex,
69 uint32_t byteSize,
70 const void* data) override;
71
72 HGIGL_API
74 HgiVertexBufferBindingVector const &bindings) override;
75
76 HGIGL_API
77 void Draw(
78 uint32_t vertexCount,
79 uint32_t baseVertex,
80 uint32_t instanceCount,
81 uint32_t baseInstance) override;
82
83 HGIGL_API
85 HgiBufferHandle const& drawParameterBuffer,
86 uint32_t drawBufferByteOffset,
87 uint32_t drawCount,
88 uint32_t stride) override;
89
90 HGIGL_API
92 HgiBufferHandle const& indexBuffer,
93 uint32_t indexCount,
94 uint32_t indexBufferByteOffset,
95 uint32_t baseVertex,
96 uint32_t instanceCount,
97 uint32_t baseInstance) override;
98
99 HGIGL_API
101 HgiBufferHandle const& indexBuffer,
102 HgiBufferHandle const& drawParameterBuffer,
103 uint32_t drawBufferByteOffset,
104 uint32_t drawCount,
105 uint32_t stride,
106 std::vector<uint32_t> const& drawParameterBufferUInt32,
107 uint32_t patchBaseVertexByteOffset) override;
108
109 HGIGL_API
110 void InsertMemoryBarrier(HgiMemoryBarrier barrier) override;
111
112protected:
113 friend class HgiGL;
114
115 HGIGL_API
117 HgiGLDevice* device,
118 HgiGraphicsCmdsDesc const& desc);
119
120 HGIGL_API
121 bool _Submit(Hgi* hgi, HgiSubmitWaitType wait) override;
122
123private:
124 HgiGLGraphicsCmds() = delete;
125 HgiGLGraphicsCmds & operator=(const HgiGLGraphicsCmds&) = delete;
126 HgiGLGraphicsCmds(const HgiGLGraphicsCmds&) = delete;
127
129 void _AddResolveToOps(HgiGLDevice* device);
130
131 bool _recording;
132 HgiGraphicsCmdsDesc _descriptor;
133 HgiPrimitiveType _primitiveType;
134 int _primitiveIndexSize;
135 HgiGLOpsVector _ops;
136 int _pushStack;
137 int32_t _restoreReadFramebuffer;
138 int32_t _restoreDrawFramebuffer;
139
140 // Cmds is used only one frame so storing multi-frame state on will not
141 // survive.
142};
143
144PXR_NAMESPACE_CLOSE_SCOPE
145
146#endif
Basic type for a vector of 4 float components.
Definition: vec4f.h:46
Basic type for a vector of 4 int components.
Definition: vec4i.h:44
OpenGL implementation of GPU device.
Definition: device.h:29
OpenGL implementation of HgiGraphicsCmds.
Definition: graphicsCmds.h:27
HGIGL_API void SetScissor(GfVec4i const &sc) override
Only pixels that lie within the scissor box are modified by drawing commands.
HGIGL_API void PushDebugGroup(const char *label, const GfVec4f &color=s_graphicsDebugColor) override
Push a debug scope.
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 InsertDebugMarker(const char *label, const GfVec4f &color=s_markerDebugColor) override
Insert a debug marker.
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 scope.
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.
OpenGL implementation of the Hydra Graphics Interface.
Definition: hgi.h:55
A graphics API independent abstraction of graphics commands.
Definition: graphicsCmds.h:31
Hydra Graphics Interface.
Definition: hgi.h:95
Describes the properties to begin a HgiGraphicsCmds.