summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/modules/webgl/WebGLSync.cpp
blob: 5d7dc9bb8e2e2379a3258b3d8887e5828c0df037 (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
// 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 "config.h"

#include "modules/webgl/WebGLSync.h"

#include "modules/webgl/WebGL2RenderingContextBase.h"

namespace blink {

WebGLSync::~WebGLSync()
{
    // See the comment in WebGLObject::detachAndDeleteObject().
    detachAndDeleteObject();
}

WebGLSync::WebGLSync(WebGL2RenderingContextBase* ctx, WGC3Dsync object, GLenum objectType)
    : WebGLSharedObject(ctx)
    , m_object(object)
    , m_objectType(objectType)
{
}

void WebGLSync::deleteObjectImpl(WebGraphicsContext3D* context3d)
{
    context3d->deleteSync(m_object);
    m_object = 0;
}

} // namespace blink