• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef WEBKIT_GLUE_GL_BINDINGS_SKIA_CMD_BUFFER_H_
6 #define WEBKIT_GLUE_GL_BINDINGS_SKIA_CMD_BUFFER_H_
7 #pragma once
8 
9 namespace webkit_glue {
10 
11 // The GPU back-end for skia requires pointers to GL functions. This function
12 // binds skia-gpu to the cmd buffers GL.
13 void BindSkiaToCommandBufferGL();
14 
15 }  // namespace webkit_glue
16 
17 #endif  // WEBKIT_GLUE_GL_BINDINGS_SKIA_CMD_BUFFER_H_
18 
19