HomeSort by relevance Sort by last modified time
    Searched refs:gl (Results 201 - 225 of 1149) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
glxinit.h 5 #include <GL/gl.h>
  /external/chromium_org/third_party/mesa/src/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>
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
cocoa_render_view.h 19 #import <OpenGL/gl.h>
  /external/chromium_org/ui/gl/android/
gl_jni_registrar.cc 5 #include "ui/gl/android/gl_jni_registrar.h"
9 #include "ui/gl/android/surface_texture.h"
10 #include "ui/gl/android/surface_texture_listener.h"
13 namespace gl { namespace in namespace:ui
29 } // namespace gl
  /external/deqp/framework/opengl/
gluCallLogWrapper.hpp 23 * \brief GL call wrapper for logging.
41 CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log);
44 // GL API is exposed as member functions
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
glxinit.h 5 #include <GL/gl.h>
  /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>
  /external/replicaisland/src/com/replica/replicaisland/
BufferLibrary.java 44 public void generateHardwareBuffers(GL10 gl) {
49 grid.generateHardwareBuffers(gl);
54 public void releaseHardwareBuffers(GL10 gl) {
59 grid.releaseHardwareBuffers(gl);
  /frameworks/native/opengl/libagl/
dxt.h 23 #include <GLES/gl.h>
light.h 34 namespace gl { namespace in namespace:android
texture.h 27 #include <GLES/gl.h>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_find.py 15 lib_gl = find_library("GL")
23 for item in (("GL", lib_gl),
32 self.gl = self.glu = self.gle = None
34 self.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
45 if self.gl:
46 self.gl.glClearIndex
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_find.py 15 lib_gl = find_library("GL")
23 for item in (("GL", lib_gl),
32 self.gl = self.glu = self.gle = None
34 self.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
45 if self.gl:
46 self.gl.glClearIndex
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
PaletteTexture.h 19 #include <GLES/gl.h>
TextureUtils.h 19 #include <GLES/gl.h>
  /frameworks/native/opengl/libs/GLES2/
gl2.cpp 32 // Actual GL entry-points
44 gl_hooks_t::gl_t const * const _c = &getGlThreadSpecific()->gl; \
61 [api] "J"(__builtin_offsetof(gl_hooks_t, gl._api)) \
79 [api] "i" (__builtin_offsetof(gl_hooks_t, gl._api)) \
98 [api] "i" (__builtin_offsetof(gl_hooks_t, gl._api)) \
117 [api] "i" (__builtin_offsetof(gl_hooks_t, gl._api)) \
149 [API] "I"(__builtin_offsetof(gl_hooks_t, gl._api)) \
182 gl_hooks_t::gl_t const * const _c = &getGlThreadSpecific()->gl;
  /frameworks/rs/driver/
rsdFrameBufferObj.cpp 132 eglQuerySurface(dc->gl.egl.display, dc->gl.egl.surface, EGL_WIDTH, &width);
133 eglQuerySurface(dc->gl.egl.display, dc->gl.egl.surface, EGL_HEIGHT, &height);
151 if(dc->gl.wndSurface != dc->gl.currentWndSurface) {
152 rsdGLSetInternalSurface(rsc, dc->gl.wndSurface);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
Grid.java 115 public void draw(GL10 gl, boolean useTexture) {
116 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
117 gl.glVertexPointer(3, GL10.GL_FLOAT, 0, mVertexBuffer);
120 gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
121 gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, mTexCoordBuffer);
122 gl.glEnable(GL10.GL_TEXTURE_2D);
124 gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
125 gl.glDisable(GL10.GL_TEXTURE_2D);
128 gl.glDrawElements(GL10.GL_TRIANGLES, mIndexCount,
130 gl.glDisableClientState(GL10.GL_VERTEX_ARRAY)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/cube/
Cube.java 64 // Buffers to be passed to gl*Pointer() functions
89 public void draw(GL10 gl)
91 gl.glFrontFace(GL10.GL_CW);
92 gl.glVertexPointer(3, GL10.GL_FIXED, 0, mVertexBuffer);
93 gl.glColorPointer(4, GL10.GL_FIXED, 0, mColorBuffer);
94 gl.glDrawElements(GL10.GL_TRIANGLES, 36, GL10.GL_UNSIGNED_BYTE, mIndexBuffer);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Cube.java 64 // Buffers to be passed to gl*Pointer() functions
89 public void draw(GL10 gl)
91 gl.glFrontFace(GL10.GL_CW);
92 gl.glVertexPointer(3, GL10.GL_FIXED, 0, mVertexBuffer);
93 gl.glColorPointer(4, GL10.GL_FIXED, 0, mColorBuffer);
94 gl.glDrawElements(GL10.GL_TRIANGLES, 36, GL10.GL_UNSIGNED_BYTE, mIndexBuffer);
  /external/chromium_org/third_party/angle/src/libEGL/
Display.h 19 namespace gl namespace
43 EGLContext createContext(EGLConfig configHandle, EGLint clientVersion, const gl::Context *shareContext, bool notifyResets, bool robustAccess);
46 void destroyContext(gl::Context *context);
50 bool isValidContext(gl::Context *context);
80 typedef std::set<gl::Context*> ContextSet;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
BufferStorage11.h 33 PackPixelsParams(const gl::Rectangle &area, GLenum format, GLenum type, GLuint outputPitch,
34 const gl::PixelPackState &pack, ptrdiff_t offset);
36 gl::Rectangle area;
40 gl::Buffer *packBuffer;
41 gl::PixelPackState pack;
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 76 GLint getInteger (ContextWrapper& gl, GLenum queryParam)
80 gl.glGetIntegerv(queryParam, &ret),
81 gl.glGetError());
82 gl.log() << TestLog::Message << "// Single integer output: " << ret << TestLog::EndMessage;
130 : CallLogWrapper (ctx.gl(), ctx.log())
191 const Functions& gl = ctx.getRenderContext().getFunctions(); local
193 GLU_CHECK_CALL_ERROR(gl.bindFramebuffer(GL_FRAMEBUFFER, fbo),
194 gl.getError());
198 gl.clearColor(0.0, 0.0, 0.0, 1.0);
199 GLU_CHECK_CALL_ERROR(gl.clear(GL_COLOR_BUFFER_BIT), gl.getError())
233 const Functions& gl = renderCtx.getFunctions(); local
692 const Functions& gl (void) const { return m_ctx.gl(); } function in class:deqp::gls::LifetimeTests::details::TestBase
    [all...]

Completed in 183 milliseconds

1 2 3 4 5 6 7 891011>>