OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DrawGL
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/shell/
DrawGL.java
10
public class
DrawGL
{
11
public static void
drawGL
(long
drawGL
, long viewContext, int width, int height,
13
nativeDrawGL(
drawGL
, viewContext, width, height, scrollX, scrollY, mode);
16
private static native void nativeDrawGL(long
drawGL
, long viewContext,
/external/chromium_org/android_webview/browser/
hardware_renderer.cc
197
void HardwareRenderer::
DrawGL
(bool stencil_enabled,
200
TRACE_EVENT0("android_webview", "HardwareRenderer::
DrawGL
");
205
DCHECK(current_context) << "
DrawGL
called without EGLContext";
/external/chromium_org/android_webview/native/
aw_contents.cc
98
->
DrawGL
(draw_info);
349
void AwContents::
DrawGL
(AwDrawGLInfo* draw_info) {
403
hardware_renderer_->
DrawGL
(state_restore.stencil_enabled(),
[
all
...]
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
AwTestContainerView.java
26
import org.chromium.android_webview.shell.
DrawGL
;
52
// and
drawGL
on the rendering thread. The variables following
82
HardwareView.this.
drawGL
(mWidth, mHeight);
101
public void initialize(long
drawGL
, long viewContext) {
102
mDrawGL =
drawGL
;
181
public void
drawGL
(int width, int height) {
197
DrawGL
.
drawGL
(mDrawGL, mViewContext, width, height, 0, 0, MODE_SYNC);
208
DrawGL
.
drawGL
(mDrawGL, mViewContext, width, height
[
all
...]
Completed in 57 milliseconds