blob: e923a2178cf34252ed992a4cb444be9e5164caeb [file] [log] [blame]
shannon.woods@transgaming.comdbbe6052013-02-28 23:03:25 +00001//
2// Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
7// Fence9.h: Defines the rx::Fence9 class which implements rx::FenceImpl.
8
9#ifndef LIBGLESV2_RENDERER_FENCE9_H_
10#define LIBGLESV2_RENDERER_FENCE9_H_
11
12#include "libGLESv2/renderer/FenceImpl.h"
shannon.woods@transgaming.com486d9e92013-02-28 23:15:41 +000013
shannon.woods@transgaming.comdbbe6052013-02-28 23:03:25 +000014namespace rx
15{
shannon.woods@transgaming.com486d9e92013-02-28 23:15:41 +000016class Renderer9;
shannon.woods@transgaming.comdbbe6052013-02-28 23:03:25 +000017
18class Fence9 : public FenceImpl
19{
20 public:
21 explicit Fence9(rx::Renderer9 *renderer);
22 virtual ~Fence9();
23
Jamie Madill09752362013-07-26 11:54:57 -040024 bool isSet() const;
25 void set();
26 bool test(bool flushCommandBuffer);
Jamie Madillcd055f82013-07-26 11:55:15 -040027 bool hasError() const;
shannon.woods@transgaming.comdbbe6052013-02-28 23:03:25 +000028
29 private:
30 DISALLOW_COPY_AND_ASSIGN(Fence9);
31
32 rx::Renderer9 *mRenderer;
33 IDirect3DQuery9 *mQuery;
34};
35
36}
37
38#endif // LIBGLESV2_RENDERER_FENCE9_H_