blob: 2b2b98b9c928d5e268039d75f73c945fb1112132 [file] [log] [blame]
// Copyright (c) 2013 The Chromium OS 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 GLBENCH_SYNCCONTROLTEST_H_
#define GLBENCH_SYNCCONTROLTEST_H_
class SyncControlTest {
public:
static SyncControlTest* Create();
SyncControlTest() { }
virtual ~SyncControlTest() { }
virtual void Init() = 0;
virtual bool Loop(int interval) = 0;
};
#endif // GLBENCH_SYNCCONTROLTEST_H_