// 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_SHELL_COMMON_SNAPSHOT_PIXEL_FORMAT_H_
#define FLUTTER_SHELL_COMMON_SNAPSHOT_PIXEL_FORMAT_H_

namespace flutter {

enum class SnapshotPixelFormat {
  kDontCare,
  kRGBA32Float,
  kR32Float,
};

}  // namespace flutter

#endif  // FLUTTER_SHELL_COMMON_SNAPSHOT_PIXEL_FORMAT_H_
