summaryrefslogtreecommitdiffstats
path: root/cc/scheduler/draw_result.h
blob: 99b325c5798e32b055ff5bc3a43fb62a4159476d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2014 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_SCHEDULER_DRAW_RESULT_H_
#define CC_SCHEDULER_DRAW_RESULT_H_

namespace cc {

enum DrawResult {
  INVALID_RESULT,
  DRAW_SUCCESS,
  DRAW_ABORTED_CHECKERBOARD_ANIMATIONS,
  DRAW_ABORTED_MISSING_HIGH_RES_CONTENT,
  DRAW_ABORTED_CONTEXT_LOST,
  DRAW_ABORTED_CANT_DRAW,
  DRAW_ABORTED_DRAINING_PIPELINE,
};

}  // namespace cc

#endif  // CC_SCHEDULER_DRAW_RESULT_H_