// // Copyright 2017 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trademarks. This License does not grant permission to use the trade // names, trademarks, service marks, or product names of the Licensor // and its affiliates, except as required to comply with Section 4(c) of // the License and to reproduce the content of the NOTICE file. // // You may obtain a copy of the Apache License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the Apache License with the above modification is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the Apache License for the specific // language governing permissions and limitations under the Apache License. // #ifndef PXR_IMAGING_HD_ST_DRAW_TARGET_ATTACHMENT_DESC_H #define PXR_IMAGING_HD_ST_DRAW_TARGET_ATTACHMENT_DESC_H #include "pxr/pxr.h" #include "pxr/imaging/hdSt/api.h" #include "pxr/imaging/hd/version.h" #include "pxr/imaging/hd/enums.h" #include "pxr/imaging/hd/types.h" #include "pxr/base/vt/value.h" #include PXR_NAMESPACE_OPEN_SCOPE /// \class HdStDrawTargetAttachmentDesc /// /// Represents an render to texture render pass. /// /// \note This is a temporary API to aid transition to Storm, and is subject /// to major changes. /// class HdStDrawTargetAttachmentDesc final { public: /// default constructor - only for use by containers. HDST_API HdStDrawTargetAttachmentDesc(); /// Construct a draw target attachment description HDST_API HdStDrawTargetAttachmentDesc(const std::string &name, HdFormat format, const VtValue &clearColor, HdWrap wrapS, HdWrap wrapT, HdMinFilter minFilter, HdMagFilter magFilter); ~HdStDrawTargetAttachmentDesc() = default; // Copy for container support. HDST_API HdStDrawTargetAttachmentDesc(const HdStDrawTargetAttachmentDesc ©); HDST_API HdStDrawTargetAttachmentDesc &operator =( const HdStDrawTargetAttachmentDesc ©); const std::string &GetName() const { return _name; } HdFormat GetFormat() const { return _format; } const VtValue &GetClearColor() const { return _clearColor; } HdWrap GetWrapS() const { return _wrapS; } HdWrap GetWrapT() const { return _wrapS; } HdMinFilter GetMinFilter() const { return _minFilter; } HdMagFilter GetMagFilter() const { return _magFilter; } // VtValue requirements HDST_API size_t GetHash() const; HDST_API void Dump(std::ostream &out) const; HDST_API bool operator==(const HdStDrawTargetAttachmentDesc &other) const; HDST_API bool operator!=(const HdStDrawTargetAttachmentDesc &other) const; private: std::string _name; HdFormat _format; VtValue _clearColor; HdWrap _wrapS; HdWrap _wrapT; HdMinFilter _minFilter; HdMagFilter _magFilter; }; HDST_API size_t hash_value(HdStDrawTargetAttachmentDesc const &attachment); HDST_API std::ostream &operator <<(std::ostream &out, const HdStDrawTargetAttachmentDesc &pv); PXR_NAMESPACE_CLOSE_SCOPE #endif // PXR_IMAGING_HD_ST_DRAW_TARGET_ATTACHMENT_DESC_H