Loading...
Searching...
No Matches
tokens.h
Go to the documentation of this file.
1//
2// Copyright 2026 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_EXEC_EXEC_IR_TOKENS_H
8#define PXR_EXEC_EXEC_IR_TOKENS_H
9
11
12#include "pxr/pxr.h"
13
14#include "pxr/exec/execIr/api.h"
15
17
18PXR_NAMESPACE_OPEN_SCOPE
19
20#define EXEC_IR_TOKENS \
21 (forwardCompute) \
22 (inverseCompute) \
23 \
24 ((parentSpaceToken, "ParentIn:Space")) \
25 \
26 ((defaultSpaceToken, "In:DefaultSpace")) \
27 \
28 ((txToken, "In:Tx")) \
29 ((tyToken, "In:Ty")) \
30 ((tzToken, "In:Tz")) \
31 ((rxToken, "In:Rx")) \
32 ((ryToken, "In:Ry")) \
33 ((rzToken, "In:Rz")) \
34 ((rspinToken, "In:Rspin")) \
35 ((rotationOrderToken, "In:RotationOrder")) \
36 \
37 ((outSpaceToken, "Out:Space"))
38
39TF_DECLARE_PUBLIC_TOKENS(ExecIrTokens, EXECIR_API, EXEC_IR_TOKENS);
40
41PXR_NAMESPACE_CLOSE_SCOPE
42
43#endif
This file defines some macros that are useful for declaring and using static TfTokens.
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
Definition: staticTokens.h:92