// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/gl/gl_fence_nv.h" #include "ui/gl/gl_bindings.h" namespace gl { GLFenceNV::GLFenceNV() { … } bool GLFenceNV::ResetSupported() { … } void GLFenceNV::ResetState() { … } bool GLFenceNV::HasCompleted() { … } void GLFenceNV::ClientWait() { … } void GLFenceNV::ServerWait() { … } GLFenceNV::~GLFenceNV() { … } void GLFenceNV::Invalidate() { … } } // namespace gl