All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
bufferArrayRange.h
1 //
2 // Copyright 2017 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_HD_ST_BUFFER_ARRAY_RANGE_H
25 #define PXR_IMAGING_HD_ST_BUFFER_ARRAY_RANGE_H
26 
27 #include "pxr/pxr.h"
28 #include "pxr/imaging/hdSt/api.h"
29 #include "pxr/imaging/hd/version.h"
30 #include "pxr/base/tf/token.h"
31 #include "pxr/imaging/hd/bufferArrayRange.h"
32 
33 #include <memory>
34 
35 PXR_NAMESPACE_OPEN_SCOPE
36 
37 
38 class HdBufferArrayGL;
40 
41 using HdStBufferArrayRangeSharedPtr =
42  std::shared_ptr<class HdStBufferArrayRange>;
43 
44 class HdStBufferResource;
45 
46 using HdStBufferResourceSharedPtr =
47  std::shared_ptr<class HdStBufferResource>;
48 using HdStBufferResourceNamedList =
49  std::vector< std::pair<TfToken, HdStBufferResourceSharedPtr> >;
50 
60 {
61 public:
62  HdStBufferArrayRange(HdStResourceRegistry* resourceRegistry);
63 
69  HDST_API
70  virtual ~HdStBufferArrayRange();
71 
74  virtual HdStBufferResourceSharedPtr GetResource() const = 0;
75 
77  virtual HdStBufferResourceSharedPtr GetResource(TfToken const& name) = 0;
78 
80  virtual HdStBufferResourceNamedList const& GetResources() const = 0;
81 
83  HDST_API
84  virtual void GetBufferSpecs(HdBufferSpecVector *bufferSpecs) const override;
85 
86 protected:
87  HdStResourceRegistry* GetResourceRegistry();
88 
89 private:
90  HdStResourceRegistry* _resourceRegistry;
91 };
92 
93 HDST_API
94 std::ostream &operator <<(std::ostream &out,
95  const HdStBufferArrayRange &self);
96 
102 {
103 public:
105  HdStBufferArrayRangeContainer(int size) : _ranges(size) { }
106 
109  HDST_API
110  void Set(int index, HdStBufferArrayRangeSharedPtr const &range);
111 
113  // is out of range or not yet set.
114  HDST_API
115  HdStBufferArrayRangeSharedPtr const &Get(int index) const;
116 
117 private:
118  std::vector<HdStBufferArrayRangeSharedPtr> _ranges;
119 };
120 
121 
122 PXR_NAMESPACE_CLOSE_SCOPE
123 
124 #endif // HD_BUFFER_ARRAY_RANGE_GL_H
HDST_API HdStBufferArrayRangeSharedPtr const & Get(int index) const
Returns the bar at index. returns null if either the index.
Interface class for representing range (subset) locator of HdBufferArray.
virtual HDST_API void GetBufferSpecs(HdBufferSpecVector *bufferSpecs) const override
Sets the bufferSpecs for all resources.
Interface class for representing range (subset) locator of HdBufferArray.
A resizable container of HdBufferArrayRanges.
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:87
virtual HdStBufferResourceNamedList const & GetResources() const =0
Returns the list of all named GPU resources for this bufferArrayRange.
HDST_API void Set(int index, HdStBufferArrayRangeSharedPtr const &range)
Set range into the container at index.
A central registry of all GPU resources.
virtual HdStBufferResourceSharedPtr GetResource() const =0
Returns the GPU resource.
A specific type of HdBufferResource (GPU resource) representing an HgiBufferHandle.
GF_API std::ostream & operator<<(std::ostream &, const GfBBox3d &)
Output a GfBBox3d using the format [(range) matrix zeroArea].
virtual HDST_API ~HdStBufferArrayRange()
Destructor (do nothing).
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...
HdStBufferArrayRangeContainer(int size)
Constructor.