| {{- /* |
| -------------------------------------------------------------------------------- |
| 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 |
| -------------------------------------------------------------------------------- |
| */ -}} |
| |
| {{- Import "src/tint/templates/enums.tmpl.inc" -}} |
| |
| #ifndef SRC_TINT_BUILTIN_INTERPOLATION_SAMPLING_H_ |
| #define SRC_TINT_BUILTIN_INTERPOLATION_SAMPLING_H_ |
| |
| #include <ostream> |
| #include <string> |
| |
| namespace tint::builtin { |
| |
| /// The interpolation sampling. |
| {{ Eval "DeclareEnum" (Sem.Enum "interpolation_sampling") }} |
| |
| } // namespace tint::builtin |
| |
| #endif // SRC_TINT_BUILTIN_INTERPOLATION_SAMPLING_H_ |