blob: 9ece13cb338282c7b1cfef3ba5d338d968803a99 [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 LIB_ESCHER_PAPER_PAPER_RENDER_QUEUE_FLAGS_H_
#define LIB_ESCHER_PAPER_PAPER_RENDER_QUEUE_FLAGS_H_
#include "lib/escher/util/enum_flags.h"
namespace escher {
// Specifies which |PaperRenderQueue| sub-queues a |PaperDrawCall| should
// be enqueued in. More than one may be specified.
enum class PaperRenderQueueFlagBits : uint8_t {
kOpaque = 1U << 0,
kTranslucent = 1U << 1,
kAllFlags = 0x3u,
};
ESCHER_DECLARE_ENUM_FLAGS(PaperRenderQueueFlags, PaperRenderQueueFlagBits);
} // namespace escher
#endif // LIB_ESCHER_PAPER_PAPER_RENDER_QUEUE_FLAGS_H_