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

1 2 3 4 5 6 7 8

  /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 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 {
  /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/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>
stw_getprocaddress.c 32 #include <GL/gl.h>
33 #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>
  /external/opencv3/3rdparty/openexr/Imath/
ImathGLU.h 40 #include <GL/gl.h>
41 #include <GL/glu.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() {
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
glxinit.h 5 #include <GL/gl.h>
  /external/skia/src/gpu/gl/glx/
GrGLCreateNativeInterface_glx.cpp 9 #include "gl/GrGLInterface.h"
10 #include "gl/GrGLAssembleInterface.h"
11 #include "gl/GrGLUtil.h"
13 #include <GL/glx.h>
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
importvbo.h 8 #include <GL/gl.h>
9 #include <GL/glext.h>
31 // We define gl functions without the ARB postfix so GL and GLES code
  /external/mesa3d/src/mesa/drivers/dri/common/
utils.h 31 #include <GL/gl.h>
32 #include <GL/internal/dri_interface.h>
  /external/autotest/client/deps/glbench/src/
glx_stuff.h 8 #include <GL/glx.h>

Completed in 468 milliseconds

1 2 3 4 5 6 7 8