HomeSort by relevance Sort by last modified time
    Searched refs:gl (Results 1 - 25 of 689) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/gpu/command_buffer/client/
gles2_trace_implementation.cc 11 GLES2TraceImplementation::GLES2TraceImplementation(GLES2Interface* gl)
12 : gl_(gl) {
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
CubeRenderer.java 44 public void onDrawFrame(GL10 gl) {
51 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
57 gl.glMatrixMode(GL10.GL_MODELVIEW);
58 gl.glLoadIdentity();
59 gl.glTranslatef(0, 0, -3.0f);
60 gl.glRotatef(mAngle, 0, 1, 0);
61 gl.glRotatef(mAngle*0.25f, 1, 0, 0);
63 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
64 gl.glEnableClientState(GL10.GL_COLOR_ARRAY);
66 gl.glScalef(mScale, mScale, mScale)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixGrabber.java 30 * @param gl
32 public void getCurrentState(GL10 gl) {
33 getCurrentProjection(gl);
34 getCurrentModelView(gl);
40 * @param gl
42 public void getCurrentModelView(GL10 gl) {
43 getMatrix(gl, GL10.GL_MODELVIEW, mModelView);
49 * @param gl
51 public void getCurrentProjection(GL10 gl) {
52 getMatrix(gl, GL10.GL_PROJECTION, mProjection)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeRenderer.java 34 public void onDrawFrame(GL10 gl) {
41 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
47 gl.glMatrixMode(GL10.GL_MODELVIEW);
48 gl.glLoadIdentity();
49 gl.glTranslatef(0, 0, -3.0f);
50 gl.glRotatef(mAngle, 0, 1, 0);
51 gl.glRotatef(mAngle*0.25f, 1, 0, 0);
53 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
54 gl.glEnableClientState(GL10.GL_COLOR_ARRAY);
56 mCube.draw(gl);
    [all...]
FrameBufferObjectActivity.java 20 import javax.microedition.khronos.opengles.GL;
60 public void onDrawFrame(GL10 gl) {
61 checkGLError(gl);
63 GL11ExtensionPack gl11ep = (GL11ExtensionPack) gl;
65 drawOffscreenImage(gl, mSurfaceWidth, mSurfaceHeight);
68 drawOffscreenImage(gl, mFramebufferWidth, mFramebufferHeight);
70 drawOnscreen(gl, mSurfaceWidth, mSurfaceHeight);
75 gl.glClearColor(1,0,0,0);
76 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
80 public void onSurfaceChanged(GL10 gl, int width, int height)
    [all...]
TouchRotateActivity.java 111 public void onDrawFrame(GL10 gl) {
118 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
124 gl.glMatrixMode(GL10.GL_MODELVIEW);
125 gl.glLoadIdentity();
126 gl.glTranslatef(0, 0, -3.0f);
127 gl.glRotatef(mAngleX, 0, 1, 0);
128 gl.glRotatef(mAngleY, 1, 0, 0);
130 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
131 gl.glEnableClientState(GL10.GL_COLOR_ARRAY);
133 mCube.draw(gl);
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLErrorLog.h 24 #define GET_GL_ERROR(gl) \
26 int err = gl.glGetError(); \
31 #define GET_GL_ERROR(gl)
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
GLErrorLog.h 24 #define GET_GL_ERROR(gl) \
26 int err = gl.glGetError(); \
31 #define GET_GL_ERROR(gl)
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
KubeRenderer.java 39 public void onDrawFrame(GL10 gl) {
52 gl.glClearColor(0.5f,0.5f,0.5f,1);
53 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
59 gl.glMatrixMode(GL10.GL_MODELVIEW);
60 gl.glLoadIdentity();
61 gl.glTranslatef(0, 0, -3.0f);
62 gl.glScalef(0.5f, 0.5f, 0.5f);
63 gl.glRotatef(mAngle, 0, 1, 0);
64 gl.glRotatef(mAngle*0.25f, 1, 0, 0);
66 gl.glColor4f(0.7f, 0.7f, 0.7f, 1.0f)
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
GLES10ExtcHeader.cpp 20 #include <GLES/gl.h>
GLES10cHeader.cpp 20 #include <GLES/gl.h>
GLES11ExtcHeader.cpp 20 #include <GLES/gl.h>
GLES11cHeader.cpp 20 #include <GLES/gl.h>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gl.py 2 """Very simple test script for the SGI gl library extension module
9 gl = import_module('gl') variable
10 GL = import_module('GL')
93 raise unittest.SkipTest, "No $DISPLAY -- skipping gl test"
95 # touch all the attributes of gl without doing anything
97 print 'Touching gl module attributes...'
101 getattr(gl, attr)
107 gl.foreground(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gl.py 2 """Very simple test script for the SGI gl library extension module
9 gl = import_module('gl') variable
10 GL = import_module('GL')
93 raise unittest.SkipTest, "No $DISPLAY -- skipping gl test"
95 # touch all the attributes of gl without doing anything
97 print 'Touching gl module attributes...'
101 getattr(gl, attr)
107 gl.foreground(
    [all...]
  /external/chromium_org/third_party/mesa/src/include/GLES/
egl.h 3 * applications. Several early implementations included gl.h
13 #include <GLES/gl.h>
  /external/mesa3d/include/GLES/
egl.h 3 * applications. Several early implementations included gl.h
13 #include <GLES/gl.h>
  /frameworks/native/opengl/include/GLES/
egl.h 3 * applications. Several early implementations included gl.h
13 #include <GLES/gl.h>
  /frameworks/base/opengl/java/android/opengl/
GLWrapperBase.java 19 import javax.microedition.khronos.opengles.GL;
27 * The abstract base class for a GL wrapper. Provides
31 implements GL, GL10, GL10Ext, GL11, GL11Ext, GL11ExtensionPack {
32 public GLWrapperBase(GL gl) {
33 mgl = (GL10) gl;
34 if (gl instanceof GL10Ext) {
35 mgl10Ext = (GL10Ext) gl;
37 if (gl instanceof GL11) {
38 mgl11 = (GL11) gl;
    [all...]
  /frameworks/rs/driver/
rsdGL.cpp 28 #include <GLES/gl.h>
136 ALOGE(" EGL ver %i %i", dc->gl.egl.majorVersion, dc->gl.egl.minorVersion);
137 ALOGE(" EGL context %p surface %p, Display=%p", dc->gl.egl.context, dc->gl.egl.surface,
138 dc->gl.egl.display);
139 ALOGE(" GL vendor: %s", dc->gl.gl.vendor);
140 ALOGE(" GL renderer: %s", dc->gl.gl.renderer)
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
RenderStateCache.h 29 ID3D11BlendState *getBlendState(const gl::BlendState &blendState);
30 ID3D11RasterizerState *getRasterizerState(const gl::RasterizerState &rasterState,
32 ID3D11DepthStencilState *getDepthStencilState(const gl::DepthStencilState &dsState);
33 ID3D11SamplerState *getSamplerState(const gl::SamplerState &samplerState);
41 static std::size_t hashBlendState(const gl::BlendState &blendState);
42 static bool compareBlendStates(const gl::BlendState &a, const gl::BlendState &b);
45 typedef std::size_t (*BlendStateHashFunction)(const gl::BlendState &);
46 typedef bool (*BlendStateEqualityFunction)(const gl::BlendState &, const gl::BlendState &)
    [all...]
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
TriangleRenderer.java 37 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
43 gl.glDisable(GL10.GL_DITHER);
49 gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT,
52 gl.glClearColor(.5f, .5f, .5f, 1);
53 gl.glShadeModel(GL10.GL_SMOOTH);
56 public void onDrawFrame(GL10 gl) {
62 gl.glDisable(GL10.GL_DITHER);
70 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
76 gl.glMatrixMode(GL10.GL_MODELVIEW);
77 gl.glLoadIdentity()
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
libGLESv2.cpp 31 if (gl::getContext() && gl::getContext()->supportsNonPower2Texture())
41 if (gl::isPow2(width) && gl::isPow2(height))
65 return gl::error(GL_INVALID_ENUM, false);
83 return gl::error(GL_INVALID_OPERATION, false);
97 return gl::error(GL_INVALID_OPERATION, false);
107 return gl::error(GL_INVALID_OPERATION, false);
116 return gl::error(GL_INVALID_OPERATION, false);
126 return gl::error(GL_INVALID_OPERATION, false)
    [all...]
  /external/aac/libAACdec/src/
overlapadd.h 102 #define SPEC(ptr,w,gl) ((ptr)+((w)*(gl)))
  /external/chromium_org/ui/gl/
gl.target.darwin-arm.mk 20 $(gyp_shared_intermediate_dir)/ui/gl/gl_bindings_autogen_egl.cc: gyp_local_path := $(LOCAL_PATH)
21 $(gyp_shared_intermediate_dir)/ui/gl/gl_bindings_autogen_egl.cc: gyp_intermediate_dir := $(abspath $(gyp_intermediate_dir))
22 $(gyp_shared_intermediate_dir)/ui/gl/gl_bindings_autogen_egl.cc: gyp_shared_intermediate_dir := $(abspath $(gyp_shared_intermediate_dir))
23 $(gyp_shared_intermediate_dir)/ui/gl/gl_bindings_autogen_egl.cc: export PATH := $(subst $(ANDROID_BUILD_PATHS),,$(PATH))
24 $(gyp_shared_intermediate_dir)/ui/gl/gl_bindings_autogen_egl.cc: $(LOCAL_PATH)/ui/gl/generate_bindings.py $(LOCAL_PATH)/third_party/mesa/src/include/GL/glext.h $(LOCAL_PATH)/third_party/mesa/src/include/GLES2/gl2ext.h $(LOCAL_PATH)/ui/gl/GL/glextchromium.h $(LOCAL_PATH)/gpu/GLES2/gl2chromium.h $(LOCAL_PATH)/gpu/GLES2/gl2extchromium.h $(LOCAL_PATH)/third_party/mesa/src/include/EGL/eglext.h $(LOCAL_PATH)/ui/gl/EGL/eglextchromium.h $(LOCAL_PATH)/third_party/mesa/src/include/GL/wglext.h $(LOCAL_PATH)/third_pa (…)
    [all...]

Completed in 1590 milliseconds

1 2 3 4 5 6 7 8 91011>>