OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mGLThread
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java
228
if (
mGLThread
!= null) {
231
mGLThread
.requestExitAndWait();
359
mGLThread
= new GLThread(mThisWeakRef);
360
mGLThread
.start();
494
mGLThread
.setRenderMode(renderMode);
505
return
mGLThread
.getRenderMode();
516
mGLThread
.requestRender();
524
mGLThread
.surfaceCreated();
533
mGLThread
.surfaceDestroyed();
541
mGLThread
.onWindowResize(w, h)
[
all
...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
SingleFrameTextureViewTestActivity.java
47
private Thread
mGLThread
;
69
if (
mGLThread
!= null) {
71
mGLThread
.join();
72
mGLThread
= null;
80
mGLThread
= new Thread() {
197
mGLThread
.start();
/cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java
233
if (
mGLThread
!= null) {
236
mGLThread
.requestExitAndWait();
362
mGLThread
= new GLThread(mThisWeakRef);
363
mGLThread
.start();
497
mGLThread
.setRenderMode(renderMode);
508
return
mGLThread
.getRenderMode();
519
mGLThread
.requestRender();
527
mGLThread
.surfaceCreated();
536
mGLThread
.surfaceDestroyed();
544
mGLThread
.onWindowResize(w, h)
[
all
...]
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/surfaceview/
GLSurfaceViewAPI18.java
241
if (
mGLThread
!= null) {
244
mGLThread
.requestExitAndWait();
371
mGLThread
= new GLThread(mThisWeakRef);
372
mGLThread
.start();
506
mGLThread
.setRenderMode(renderMode);
517
return
mGLThread
.getRenderMode();
528
mGLThread
.requestRender();
536
mGLThread
.surfaceCreated();
545
mGLThread
.surfaceDestroyed();
553
mGLThread
.onWindowResize(w, h)
[
all
...]
/external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java
291
mGLThread
= new GLThread(renderer);
292
mGLThread
.start();
425
mGLThread
.setRenderMode(renderMode);
436
return
mGLThread
.getRenderMode();
447
mGLThread
.requestRender();
455
mGLThread
.surfaceCreated();
464
mGLThread
.surfaceDestroyed();
472
mGLThread
.onWindowResize(w, h);
483
mGLThread
.onPause();
495
mGLThread
.onResume()
[
all
...]
/cts/tests/tests/view/src/android/view/cts/
TextureViewCtsActivity.java
52
private Handler
mGLThread
;
72
mGLThread
= new Handler(mGLThreadLooper.getLooper());
116
mGLThread
.post(wrapper);
Completed in 135 milliseconds