summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libGLESv2/renderer/FenceImpl.h
blob: 1dd46785d998d9228ed2a492952d63c7429eb351 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

// FenceImpl.h: Defines the rx::FenceNVImpl and rx::FenceSyncImpl classes.

#ifndef LIBGLESV2_RENDERER_FENCEIMPL_H_
#define LIBGLESV2_RENDERER_FENCEIMPL_H_

#include "libGLESv2/Error.h"

#include "common/angleutils.h"

#include "angle_gl.h"

namespace rx
{

class FenceNVImpl
{
  public:
    FenceNVImpl() { };
    virtual ~FenceNVImpl() { };

    virtual gl::Error set() = 0;
    virtual gl::Error test(bool flushCommandBuffer, GLboolean *outFinished) = 0;
    virtual gl::Error finishFence(GLboolean *outFinished) = 0;

  private:
    DISALLOW_COPY_AND_ASSIGN(FenceNVImpl);
};

class FenceSyncImpl
{
  public:
    FenceSyncImpl() { };
    virtual ~FenceSyncImpl() { };

    virtual gl::Error set() = 0;
    virtual gl::Error clientWait(GLbitfield flags, GLuint64 timeout, GLenum *outResult) = 0;
    virtual gl::Error serverWait(GLbitfield flags, GLuint64 timeout) = 0;
    virtual gl::Error getStatus(GLint *outResult) = 0;

  private:
    DISALLOW_COPY_AND_ASSIGN(FenceSyncImpl);
};

}

#endif // LIBGLESV2_RENDERER_FENCEIMPL_H_