summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/modules/webgl/WebGLFenceSync.cpp
blob: a2b52bedd139b81b19ebc1ada0d856fd68f29d8e (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
// Copyright 2015 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.

#include "modules/webgl/WebGLFenceSync.h"

#include "modules/webgl/WebGL2RenderingContextBase.h"

namespace blink {

WebGLSync* WebGLFenceSync::create(WebGL2RenderingContextBase* ctx, GLenum condition, GLbitfield flags)
{
    return new WebGLFenceSync(ctx, condition, flags);
}

WebGLFenceSync::~WebGLFenceSync()
{
}

WebGLFenceSync::WebGLFenceSync(WebGL2RenderingContextBase* ctx, GLenum condition, GLbitfield flags)
    : WebGLSync(ctx, ctx->webContext()->fenceSync(condition, flags), GL_SYNC_FENCE)
{
}

} // namespace blink