File tree Expand file tree Collapse file tree
Graphics/GraphicsEngineOpenGL/include Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -150,12 +150,6 @@ class PipelineResourceSignatureGLImpl final : public PipelineResourceSignatureBa
150150 class GLContextState & CtxState,
151151 const TBindings& BaseBindings) const ;
152152
153- const InlineConstantBufferAttribsGL& GetInlineConstantBuffer (Uint32 Index) const
154- {
155- VERIFY_EXPR (Index < m_NumInlineConstantBuffers);
156- return m_InlineConstantBuffers[Index];
157- }
158-
159153 Uint32 GetImmutableSamplerIdx (const ResourceAttribs& Res) const
160154 {
161155 Uint32 ImtblSamIdx = InvalidImmutableSamplerIndex;
@@ -175,6 +169,12 @@ class PipelineResourceSignatureGLImpl final : public PipelineResourceSignatureBa
175169private:
176170 void CreateLayout (bool IsSerialized);
177171
172+ const InlineConstantBufferAttribsGL& GetInlineConstantBuffer (Uint32 Index) const
173+ {
174+ VERIFY_EXPR (Index < m_NumInlineConstantBuffers);
175+ return m_InlineConstantBuffers[Index];
176+ }
177+
178178private:
179179 TBindings m_BindingCount = {};
180180
You can’t perform that action at this time.
0 commit comments