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

1 2 3 4 5 6 7 8 9

  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL.java 1 /* //device/java/android/javax/microedition/khronos/opengles/GL.java
20 public interface GL {
GL10Ext.java 22 public interface GL10Ext extends GL {
  /external/skia/src/gpu/gl/mesa/
osmesa_wrapper.h 15 #include <GL/osmesa.h>
  /external/skia/tools/gpu/gl/mesa/
osmesa_wrapper.h 16 #include <GL/osmesa.h>
  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
GLHeader.java-if 1 /* //device/java/android/javax/microedition/khronos/opengles/GL.java
20 public interface GL {
  /hardware/qcom/display/msm8998/gpu_tonemapper/
EGLImageBuffer.cpp 64 GL(glDeleteTextures(1, &textureID));
69 GL(glDeleteRenderbuffers(1, &renderbufferID));
74 GL(glDeleteFramebuffers(1, &framebufferID));
127 GL(glGenTextures(1, &textureID));
129 GL(glBindTexture(target, textureID));
130 GL(glTexParameteri(target, GL_TEXTURE_MIN_FILTER, GL_LINEAR));
131 GL(glTexParameteri(target, GL_TEXTURE_MAG_FILTER, GL_LINEAR));
132 GL(glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE));
133 GL(glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE));
135 GL(glEGLImageTargetTexture2DOES(0x8D65, eglImageID))
    [all...]
glengine.cpp 50 // initialize GL
110 GL(glDeleteTextures(1, &id));
119 GL(glDeleteProgram(id));
128 GL(glGenTextures(1, &texture));
129 GL(glBindTexture(GL_TEXTURE_3D, texture));
130 GL(glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE));
131 GL(glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE));
132 GL(glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE));
133 GL(glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MIN_FILTER, GL_LINEAR));
134 GL(glTexParameteri(GL_TEXTURE_3D, GL_TEXTURE_MAG_FILTER, GL_LINEAR))
    [all...]
  /external/mesa3d/bin/
installmesa 37 echo "About to install Mesa header files (GL/*.h) in: " ${INCLUDE_DIR}/GL
66 mkdir -p ${INCLUDE_DIR}/GL
69 cp -f ${TOP}/include/GL/*.h ${INCLUDE_DIR}/GL
70 cp -f ${TOP}/src/glw/*.h ${INCLUDE_DIR}/GL
  /external/swiftshader/src/OpenGL/libGL/
Fence.h 22 #include <GL/GL.h>
23 #include <GL/glext.h>
25 namespace gl namespace
Query.h 15 // Query.h: Defines the gl::Query class
25 #include <GL/GL.h>
26 #include <GL/glext.h>
28 namespace gl namespace
Buffer.h 16 // index data. Implements GL buffer objects and related functionality.
26 #include <GL/GL.h>
27 #include <GL/glext.h>
32 namespace gl namespace
IndexDataManager.h 25 #include <GL/GL.h>
26 #include <GL/glext.h>
28 namespace gl namespace
  /external/mesa3d/src/glx/
glxextensions.c 43 #define GL(n) "GL_" # n, 3 + sizeof( # n ) - 1, GL_ ## n ## _bit
106 { GL(ARB_depth_texture), VER(1,4), Y, N, N, N },
107 { GL(ARB_draw_buffers), VER(0,0), Y, N, N, N },
108 { GL(ARB_fragment_program), VER(0,0), Y, N, N, N },
109 { GL(ARB_fragment_program_shadow), VER(0,0), Y, N, N, N },
110 { GL(ARB_framebuffer_object), VER(0,0), Y, N, N, N },
111 { GL(ARB_imaging), VER(0,0), Y, N, N, N },
112 { GL(ARB_multisample), VER(1,3), Y, N, N, N },
113 { GL(ARB_multitexture), VER(1,3), Y, N, N, N },
114 { GL(ARB_occlusion_query), VER(1,5), Y, N, N, N }
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_extensionsstring.c 33 #include <GL/gl.h>
34 #include <GL/wglext.h>
stw_ext_swapinterval.c 33 #include <GL/gl.h>
34 #include <GL/wglext.h>
  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGLContext.java 19 import javax.microedition.khronos.opengles.GL;
29 public abstract GL getGL();
  /external/deqp/framework/opengl/
gluDefs.hpp 36 #define GLU_CHECK_GLW_MSG(GL, MSG) GLU_EXPECT_NO_ERROR((GL).getError(), MSG)
37 #define GLU_CHECK_GLW(GL) GLU_CHECK_GLW_MSG(GL, DE_NULL)
38 #define GLU_CHECK_GLW_CALL(GL, CALL) do { (GL).CALL; GLU_EXPECT_NO_ERROR((GL).getError(), #CALL); } while (deGetFalse())
  /external/mesa3d/src/mesa/main/
extensions.c 44 GLL = 1 << API_OPENGL, /* GL Legacy / Compatibility */
45 GLC = 1 << API_OPENGL_CORE, /* GL Core */
46 GL = (1 << API_OPENGL) | (1 << API_OPENGL_CORE),
82 { "GL_ARB_ES2_compatibility", o(ARB_ES2_compatibility), GL, 2009 },
83 { "GL_ARB_base_instance", o(ARB_base_instance), GL, 2011 },
84 { "GL_ARB_blend_func_extended", o(ARB_blend_func_extended), GL, 2009 },
85 { "GL_ARB_color_buffer_float", o(ARB_color_buffer_float), GL, 2004 },
86 { "GL_ARB_copy_buffer", o(ARB_copy_buffer), GL, 2008 },
87 { "GL_ARB_conservative_depth", o(ARB_conservative_depth), GL, 2011 },
88 { "GL_ARB_debug_output", o(dummy_true), GL, 2009 }
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.h 31 #include <GL/vms_x_fix.h>
glxheader.h 30 #include <GL/vms_x_fix.h>
44 # include <GL/glx.h>
  /external/mesa3d/src/glx/apple/
apple_glx.h 34 #include <GL/gl.h>
35 #include <GL/glxint.h>
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextActivity.java 19 import javax.microedition.khronos.opengles.GL;
32 public GL wrap(GL gl) {
33 return new MatrixTrackingGL(gl);
  /frameworks/base/opengl/java/android/opengl/
GLDebugHelper.java 22 import javax.microedition.khronos.opengles.GL;
27 * Wraps the supplied GL interface with a new GL interface that adds support for
34 * Wrap an existing GL interface in a new GL interface that adds support for
37 * Wrapping means that the GL instance that is passed in to this method is
38 * wrapped inside a new GL instance that optionally performs additional
39 * operations before and after calling the wrapped GL instance.
42 * glError after each GL operation,
45 * is an alternative to manually calling glError after every GL operation
    [all...]
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/base/opengl/java/com/google/android/gles_jni/
EGLContextImpl.java 20 import javax.microedition.khronos.opengles.GL;
32 public GL getGL() {

Completed in 575 milliseconds

1 2 3 4 5 6 7 8 9