summaryrefslogtreecommitdiff
path: root/chromium/cc/trees/target_property.h
blob: e118c8db6a749f4c61d2508bf8807730913ec7c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) 2016 The Chromium 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 CC_TREES_TARGET_PROPERTY_H_
#define CC_TREES_TARGET_PROPERTY_H_

#include <bitset>

#include "cc/base/cc_export.h"

namespace cc {

namespace TargetProperty {

enum Type {
  TRANSFORM = 0,
  OPACITY,
  FILTER,
  SCROLL_OFFSET,
  BACKGROUND_COLOR,
  // These sentinels must be last
  FIRST_TARGET_PROPERTY = TRANSFORM,
  LAST_TARGET_PROPERTY = BACKGROUND_COLOR
};

CC_EXPORT const char* GetName(TargetProperty::Type property);

}  // namespace TargetProperty

// A set of target properties. TargetProperty must be 0-based enum.
using TargetProperties = std::bitset<TargetProperty::LAST_TARGET_PROPERTY + 1>;

}  // namespace cc

#endif  // CC_TREES_TARGET_PROPERTY_H_