blob: 387fda237c2b4cb10f48dc1a706465e066ef8280 [file] [log] [blame]
{{- /*
--------------------------------------------------------------------------------
Template file for use with tools/src/cmd/gen to generate interpolate_attribute.h
See:
* tools/src/cmd/gen for structures used by this template
* https://golang.org/pkg/text/template/ for documentation on the template syntax
--------------------------------------------------------------------------------
*/ -}}
{{- $I := LoadIntrinsics "src/tint/lang/core/core.def" -}}
{{- Import "src/tint/utils/templates/enums.tmpl.inc" -}}
#ifndef SRC_TINT_LANG_CORE_INTERPOLATION_TYPE_H_
#define SRC_TINT_LANG_CORE_INTERPOLATION_TYPE_H_
#include <cstdint>
#include <string>
#include "src/tint/utils/traits/traits.h"
namespace tint::core {
/// The interpolation type.
{{ Eval "DeclareEnum" ($I.Sem.Enum "interpolation_type") }}
} // namespace tint::core
#endif // SRC_TINT_LANG_CORE_INTERPOLATION_TYPE_H_