HomeSort by relevance Sort by last modified time
    Searched defs:gl (Results 76 - 100 of 358) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/deqp/framework/opengl/
gluPixelTransfer.cpp 51 const glw::Functions& gl = context.getFunctions(); local
60 gl.pixelStorei(GL_PACK_ALIGNMENT, getTransferAlignment(dst.getFormat()));
61 gl.readPixels(x, y, width, height, format.format, format.dataType, dst.getDataPtr());
70 const glw::Functions& gl = context.getFunctions(); local
79 gl.pixelStorei(GL_UNPACK_ALIGNMENT, getTransferAlignment(src.getFormat()));
80 gl.texImage2D(target, level, internalFormat, width, height, 0, format.format, format.dataType, src.getDataPtr());
89 const glw::Functions& gl = context.getFunctions(); local
99 gl.pixelStorei(GL_UNPACK_ALIGNMENT, getTransferAlignment(src.getFormat()));
100 gl.texImage3D(target, level, internalFormat, width, height, depth, 0, format.format, format.dataType, src.getDataPtr());
109 const glw::Functions& gl = context.getFunctions() local
128 const glw::Functions& gl = context.getFunctions(); local
    [all...]
  /external/deqp/modules/gles2/
tes2TestCaseWrapper.cpp 79 const glw::Functions& gl = m_renderCtx.getFunctions(); local
83 gl.clearColor(0.125f, 0.25f, 0.5f, 1.f);
84 gl.clear(GL_COLOR_BUFFER_BIT);
tes2InfoTests.cpp 56 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
57 const char* result = (const char*)gl.getString(m_query);
59 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetString() failed");
  /external/deqp/modules/gles3/
tes3TestCaseWrapper.cpp 81 const glw::Functions& gl = m_renderCtx.getFunctions(); local
82 gl.clearColor(0.125f, 0.25f, 0.5f, 1.f);
83 gl.clear(GL_COLOR_BUFFER_BIT);
tes3InfoTests.cpp 56 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
57 const char* result = (const char*)gl.getString(m_query);
59 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetString() failed");
  /external/elfutils/0.153/libdw/
dwarf_getpubnames.c 210 Dwarf_Global gl; local
212 gl.cu_offset = (dbg->pubnames_sets[cnt].cu_offset
219 gl.die_offset = read_4ubyte_unaligned_inc (dbg, readp);
221 gl.die_offset = read_8ubyte_unaligned_inc (dbg, readp);
224 if (gl.die_offset == 0)
228 gl.die_offset += dbg->pubnames_sets[cnt].cu_offset;
230 gl.name = (char *) readp;
231 readp = (unsigned char *) rawmemchr (gl.name, '\0') + 1;
234 if (callback (dbg, &gl, arg) != DWARF_CB_OK)
  /external/skia/include/gpu/gl/
SkGLContextHelper.h 32 const GrGLInterface* gl() const { return fGL; } function in class:SkGLContextHelper
55 * Subclass implements this to make a GL context. The returned GrGLInterface
63 * Subclass should destroy the underlying GL context.
77 * Helper macros for using the GL context through the GrGLInterface. Example:
80 #define SK_GL(ctx, X) (ctx).gl()->fFunctions.f ## X; \
81 SkASSERT(GR_GL_NO_ERROR == (ctx).gl()->fFunctions.fGetError())
82 #define SK_GL_RET(ctx, RET, X) (RET) = (ctx).gl()->fFunctions.f ## X; \
83 SkASSERT(GR_GL_NO_ERROR == (ctx).gl()->fFunctions.fGetError())
84 #define SK_GL_NOERRCHECK(ctx, X) (ctx).gl()->fFunctions.f ## X
85 #define SK_GL_RET_NOERRCHECK(ctx, RET, X) (RET) = (ctx).gl()->fFunctions.f ##
    [all...]
  /frameworks/native/opengl/libagl/
BufferObjectManager.h 30 #include <GLES/gl.h>
40 namespace gl { namespace in namespace:android
62 gl::buffer_t const* bind(GLuint buffer);
63 int allocateStore(gl::buffer_t* bo, GLsizeiptr size, GLenum usage);
69 KeyedVector<GLuint, gl::buffer_t*> mBuffers;
fp.cpp 32 namespace gl { namespace in namespace:android
  /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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
Monolith.java 113 public void draw(GL10 gl) {
114 gl.glColor4f(0.5f, 0.5f, 0.5f, 1f);
115 gl.glVertexPointer(3, GL10.GL_FLOAT, 0, mVertexBuffer);
116 gl.glDrawElements(GL10.GL_TRIANGLES, NUM_INDICES, GL10.GL_UNSIGNED_SHORT, 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/libGLESv2/
Framebuffer.cpp 8 // Framebuffer.cpp: Implements the gl::Framebuffer class. Implements GL framebuffer
21 namespace gl namespace
47 gl::Context *context = gl::getContext();
415 for (unsigned int colorAttachment = 0; colorAttachment < gl::IMPLEMENTATION_MAX_DRAW_BUFFERS; colorAttachment++)
481 if (!gl::IsColorRenderingSupported(colorbuffer->getInternalFormat(), mRenderer))
490 if (!gl::IsColorRenderingSupported(internalformat, mRenderer))
495 if (gl::GetDepthBits(internalformat, clientVersion) > 0 ||
496 gl::GetStencilBits(internalformat, clientVersion) > 0
    [all...]
FramebufferAttachment.h 7 // FramebufferAttachment.h: Defines the wrapper class gl::FramebufferAttachment, as well as the
26 namespace gl namespace
36 // FramebufferAttachment implements the GL renderbuffer object.
Renderbuffer.h 7 // Renderbuffer.h: Defines the wrapper class gl::Renderbuffer, as well as the
9 // DepthStencilbuffer, Depthbuffer and Stencilbuffer. Implements GL renderbuffer
30 namespace gl namespace
Uniform.h 20 namespace gl namespace
angletypes.cpp 14 namespace gl namespace
134 const gl::VertexAttribCurrentValueData *currentValues)
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
IndexDataManager.h 20 namespace gl namespace
52 GLenum prepareIndexData(GLenum type, GLsizei count, gl::Buffer *arrayElementBuffer, const GLvoid *indices, TranslatedIndexData *translated);
VertexDataManager.h 17 namespace gl namespace
35 const gl::VertexAttribute *attribute;
52 GLenum prepareVertexData(const gl::VertexAttribute attribs[], const gl::VertexAttribCurrentValueData currentValues[],
53 gl::ProgramBinary *programBinary, GLint start, GLsizei count, TranslatedAttribute *outAttribs, GLsizei instances);
62 gl::VertexAttribCurrentValueData mCurrentValue[gl::MAX_VERTEX_ATTRIBS];
64 StreamingVertexBufferInterface *mCurrentValueBuffer[gl::MAX_VERTEX_ATTRIBS];
65 std::size_t mCurrentValueOffsets[gl::MAX_VERTEX_ATTRIBS];
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
Blit9.h 14 namespace gl namespace
33 bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterface2D *storage, GLint level);
34 bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level);
VertexDeclarationCache.h 14 namespace gl namespace
28 GLenum applyDeclaration(IDirect3DDevice9 *device, TranslatedAttribute attributes[], gl::ProgramBinary *programBinary, GLsizei instances, GLsizei *repeatDraw);
44 VBData mAppliedVBs[gl::MAX_VERTEX_ATTRIBS];
50 D3DVERTEXELEMENT9 cachedElements[gl::MAX_VERTEX_ATTRIBS + 1];
  /external/deqp/modules/gles31/
tes31InfoTests.cpp 56 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
57 const char* result = (const char*)gl.getString(m_query);
59 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetString() failed");
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
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);
  /frameworks/native/opengl/libs/
hooks.h 28 #include <GLES/gl.h>
41 // maximum number of GL extensions that can be used simultaneously in
54 // GL / EGL hooks
68 } gl; member in struct:android::gl_hooks_t
  /frameworks/rs/driver/
rsdCore.h 50 RsdGL gl; member in struct:RsdHalRec

Completed in 1808 milliseconds

1 2 34 5 6 7 8 91011>>