blob: 3c0acf44cb0b2cc76a78a529d6d0b7c5b08900e4 [file] [log] [blame]
Po-Hsien Wang42e116c2020-06-09 16:10:27 -07001// Copyright 2020 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Po-Hsien Wang93cc6892020-10-28 17:01:28 -07005#ifndef __CONSTANT_H__
Po-Hsien Wang42e116c2020-06-09 16:10:27 -07006#define __CONSTANT_H__
7
8// ERROR_TYPE indicates various error type for vkbench itself.
9enum ERROR_TYPE {
10 TEST_PASS,
11 TEST_FAIL,
Po-Hsien Wang42e116c2020-06-09 16:10:27 -070012};
13
14#endif