Loading...
Searching...
No Matches
computeCmdsDesc.h
1//
2// Copyright 2022 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_COMPUTE_CMDS_DESC_H
8#define PXR_IMAGING_HGI_COMPUTE_CMDS_DESC_H
9
10#include "pxr/pxr.h"
11#include "pxr/imaging/hgi/api.h"
12#include "pxr/imaging/hgi/enums.h"
13
14PXR_NAMESPACE_OPEN_SCOPE
15
16
27{
28 HGI_API
30
31 HgiComputeDispatch dispatchMethod;
32};
33
34HGI_API
35bool operator==(
36 const HgiComputeCmdsDesc& lhs,
37 const HgiComputeCmdsDesc& rhs);
38
39HGI_API
40bool operator!=(
41 const HgiComputeCmdsDesc& lhs,
42 const HgiComputeCmdsDesc& rhs);
43
44
45PXR_NAMESPACE_CLOSE_SCOPE
46
47#endif
Describes the properties to construct a HgiComputeCmds.