blob: 2e2b6aae631dd3337450a1e0cda2292d49bbd58c [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_IMPELLER_SHADER_ARCHIVE_SHADER_ARCHIVE_TYPES_H_
#define FLUTTER_IMPELLER_SHADER_ARCHIVE_SHADER_ARCHIVE_TYPES_H_
namespace impeller {
enum class ArchiveShaderType {
kVertex,
kFragment,
kCompute,
};
enum class ArchiveRenderingBackend {
kMetal,
kVulkan,
kOpenGLES,
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_SHADER_ARCHIVE_SHADER_ARCHIVE_TYPES_H_