Loading...
Searching...
No Matches
bufferSpec.h
1//
2// Copyright 2016 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_BUFFER_SPEC_H
25#define PXR_IMAGING_HD_BUFFER_SPEC_H
26
27#include "pxr/pxr.h"
28#include "pxr/imaging/hd/api.h"
29#include "pxr/imaging/hd/version.h"
30#include "pxr/imaging/hd/types.h"
31#include "pxr/base/tf/stl.h"
32#include "pxr/base/tf/token.h"
33#include <vector>
34
35PXR_NAMESPACE_OPEN_SCOPE
36
37
38typedef std::vector<struct HdBufferSpec> HdBufferSpecVector;
39
53struct HdBufferSpec final {
55 HdBufferSpec(TfToken const &name, HdTupleType tupleType) :
56 name(name), tupleType(tupleType) {}
57
59 template<typename T>
60 static void GetBufferSpecs(T const &sources,
61 HdBufferSpecVector *bufferSpecs) {
62 for (auto const &src : sources) {
63 if (src->IsValid()) {
64 src->GetBufferSpecs(bufferSpecs);
65 }
66 }
67 }
68
71 HD_API
72 static bool IsSubset(HdBufferSpecVector const &subset,
73 HdBufferSpecVector const &superset);
74
79 HD_API
80 static HdBufferSpecVector ComputeUnion(HdBufferSpecVector const &spec1,
81 HdBufferSpecVector const &spec2);
82
86 HD_API
87 static HdBufferSpecVector ComputeDifference(HdBufferSpecVector const &spec1,
88 HdBufferSpecVector const &spec2);
89
91 HD_API
92 static void Dump(HdBufferSpecVector const &specs);
93
95 HD_API
96 size_t Hash() const;
97
99 struct HashFunctor {
100 size_t operator()(HdBufferSpec const& spec) const {
101 return spec.Hash();
102 }
103 };
104
106 bool operator == (HdBufferSpec const &other) const {
107 return name == other.name && tupleType == other.tupleType;
108 }
109 bool operator != (HdBufferSpec const &other) const {
110 return !(*this == other);
111 }
112
114 bool operator < (HdBufferSpec const &other) const {
115 return name < other.name || (name == other.name &&
116 tupleType < other.tupleType);
117 }
118
119 TfToken name;
120 HdTupleType tupleType;
121};
122
123// Support TfHash.
124template <class HashState>
125void
126TfHashAppend(HashState &h, HdBufferSpec const &bs)
127{
128 h.Append(bs.name, bs.tupleType);
129}
130
131PXR_NAMESPACE_CLOSE_SCOPE
132
133#endif // PXR_IMAGING_HD_BUFFER_SPEC_H
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:88
Functor to use for unordered sets, maps.
Definition: bufferSpec.h:99
Describes each named resource of buffer array.
Definition: bufferSpec.h:53
static HD_API bool IsSubset(HdBufferSpecVector const &subset, HdBufferSpecVector const &superset)
Returns true if subset is a subset of superset.
static HD_API HdBufferSpecVector ComputeDifference(HdBufferSpecVector const &spec1, HdBufferSpecVector const &spec2)
Returns difference set of spec1 and spec2, i.e., entries in spec1 that are not in spec2.
bool operator==(HdBufferSpec const &other) const
Equality checks.
Definition: bufferSpec.h:106
static HD_API void Dump(HdBufferSpecVector const &specs)
Debug output.
static HD_API HdBufferSpecVector ComputeUnion(HdBufferSpecVector const &spec1, HdBufferSpecVector const &spec2)
Returns union set of spec1 and spec2.
bool operator<(HdBufferSpec const &other) const
Ordering.
Definition: bufferSpec.h:114
HdBufferSpec(TfToken const &name, HdTupleType tupleType)
Constructor.
Definition: bufferSpec.h:55
HD_API size_t Hash() const
Return a size_t hash for this spec.
static void GetBufferSpecs(T const &sources, HdBufferSpecVector *bufferSpecs)
Util function for adding buffer specs of sources into bufferspecs.
Definition: bufferSpec.h:60
HdTupleType represents zero, one, or more values of the same HdType.
Definition: types.h:358
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...