1 // Copyright 2014 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.
5 package com
.android
.webview
.chromium
;
7 abstract class GraphicsUtils
{
8 public static long getDrawSWFunctionTable() {
9 return nativeGetDrawSWFunctionTable();
12 public static long getDrawGLFunctionTable() {
13 return nativeGetDrawGLFunctionTable();
16 private static native long nativeGetDrawSWFunctionTable();
17 private static native long nativeGetDrawGLFunctionTable();