// 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_arb.h" #include "base/strings/stringprintf.h" #include "ui/gl/gl_bindings.h" #include "ui/gl/gl_context.h" namespace gl { namespace { std::string GetGLErrors() { … } } // namespace GLFenceARB::GLFenceARB() { … } bool GLFenceARB::HasCompleted() { … } void GLFenceARB::ClientWait() { … } void GLFenceARB::ServerWait() { … } GLFenceARB::~GLFenceARB() { … } void GLFenceARB::Invalidate() { … } void GLFenceARB::HandleClientWaitFailure() { … } } // namespace gl