Searched defs:gl (Results 51 - 75 of 370) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DImageD3D.h17 namespace gl namespace
H A DIndexDataManager.h24 namespace gl namespace
56 gl::Error prepareIndexData(GLenum type, GLsizei count, gl::Buffer *arrayElementBuffer, const GLvoid *indices, TranslatedIndexData *translated);
59 gl::Error getStreamingIndexBuffer(GLenum destinationIndexType, IndexBufferInterface **outBuffer);
H A DVertexDataManager.h17 namespace gl namespace
38 const gl::VertexAttribute *attribute;
55 gl::Error prepareVertexData(const gl::VertexAttribute attribs[], const gl::VertexAttribCurrentValueData currentValues[],
56 gl::ProgramBinary *programBinary, GLint start, GLsizei count, TranslatedAttribute *outAttribs, GLsizei instances);
61 gl::Error reserveSpaceForAttrib(const gl::VertexAttribute &attrib,
62 const gl::VertexAttribCurrentValueData &currentValue,
66 void invalidateMatchingStaticData(const gl
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DImage11.h17 namespace gl namespace
54 virtual void copy(GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, gl::Framebuffer *source);
/external/chromium_org/third_party/skia/include/gpu/gl/
H A DSkGLContextHelper.h32 const GrGLInterface* gl() const { return fGL; } function in class:SkGLContextHelper
88 #define SK_GL(ctx, X) (ctx).gl()->fFunctions.f ## X; \
89 SkASSERT(0 == (ctx).gl()->fFunctions.fGetError())
90 #define SK_GL_RET(ctx, RET, X) (RET) = (ctx).gl()->fFunctions.f ## X; \
91 SkASSERT(0 == (ctx).gl()->fFunctions.fGetError())
92 #define SK_GL_NOERRCHECK(ctx, X) (ctx).gl()->fFunctions.f ## X
93 #define SK_GL_RET_NOERRCHECK(ctx, RET, X) (RET) = (ctx).gl()->fFunctions.f ## X
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLSL.cpp12 bool GrGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation) { argument
14 GrGLSLVersion ver = GrGLGetGLSLVersion(gl);
18 switch (gl->fStandard) {
/external/chromium_org/ui/android/java/src/org/chromium/ui/gl/
H A DSurfaceTextureListener.java5 package org.chromium.ui.gl;
/external/deqp/modules/gles2/
H A Dtes2TestCaseWrapper.cpp79 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);
/external/deqp/modules/gles3/
H A Dtes3TestCaseWrapper.cpp81 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);
/external/elfutils/0.153/libdw/
H A Ddwarf_getpubnames.c210 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/replicaisland/src/com/replica/replicaisland/
H A DBufferLibrary.java44 public void generateHardwareBuffers(GL10 gl) { argument
49 grid.generateHardwareBuffers(gl);
54 public void releaseHardwareBuffers(GL10 gl) { argument
59 grid.releaseHardwareBuffers(gl);
H A DOpenGLSystem.java39 public OpenGLSystem(GL10 gl) { argument
40 sGL = gl;
43 public static final void setGL(GL10 gl) { argument
44 sGL = gl;
/external/skia/include/gpu/gl/
H A DSkGLContextHelper.h32 const GrGLInterface* gl() const { return fGL; } function in class:SkGLContextHelper
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 ## X
/external/skia/src/gpu/gl/
H A DGrGLSL.cpp12 bool GrGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation) { argument
14 GrGLSLVersion ver = GrGLGetGLSLVersion(gl);
18 switch (gl->fStandard) {
/external/chromium_org/third_party/angle/src/common/
H A Ddebug.h21 namespace gl namespace
43 #define TRACE(message, ...) gl::trace(true, "trace: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__)
50 #define FIXME(message, ...) gl::trace(false, "fixme: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__)
57 #define ERR(message, ...) gl::trace(false, "err: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__)
65 #define EVENT(message, ...) gl::ScopedPerfEventHelper scopedPerfEventHelper ## __LINE__("%s" message "\n", __FUNCTION__, __VA_ARGS__);
67 #define EVENT(message, ...) gl::ScopedPerfEventHelper scopedPerfEventHelper(message "\n", ##__VA_ARGS__);
H A Devent_tracer.cpp7 namespace gl namespace
13 } // namespace gl
20 gl::g_getCategoryEnabledFlag = getCategoryEnabledFlag;
21 gl::g_addTraceEvent = addTraceEvent;
26 namespace gl namespace
49 } // namespace gl
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DRenderbuffer.h7 // Renderbuffer.h: Defines the wrapper class gl::Renderbuffer, as well as the
28 namespace gl namespace
H A DTexture.h7 // Texture.h: Defines the abstract gl::Texture class and its concrete derived
36 namespace gl namespace
42 bool IsMipmapFiltered(const gl::SamplerState &samplerState);
H A DUniform.h20 namespace gl namespace
H A Dmain.cpp16 namespace gl namespace
64 gl::AllocateCurrent();
69 gl::DeallocateCurrent();
74 gl::DeallocateCurrent();
85 namespace gl namespace
125 gl::error(GL_OUT_OF_MEMORY);
146 gl::Context *context = glGetCurrentContext();
H A Dqueryconversions.cpp12 namespace gl namespace
43 return gl::iround<QueryT>(value);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DBlit9.h16 namespace gl namespace
34 bool copy2D(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLint level);
35 bool copyCube(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLenum target, GLint level);
H A DVertexDeclarationCache.h15 namespace gl namespace
29 gl::Error applyDeclaration(IDirect3DDevice9 *device, TranslatedAttribute attributes[], gl::ProgramBinary *programBinary, GLsizei instances, GLsizei *repeatDraw);
45 VBData mAppliedVBs[gl::MAX_VERTEX_ATTRIBS];
51 D3DVERTEXELEMENT9 cachedElements[gl::MAX_VERTEX_ATTRIBS + 1];
/external/chromium_org/webkit/common/gpu/
H A Dwebgraphicscontext3d_impl.h585 void setGLInterface(::gpu::gles2::GLES2Interface* gl) { argument
586 gl_ = gl;
/external/deqp/framework/opengl/
H A DgluObjectWrapper.cpp35 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits) argument
36 : m_gl (gl)
40 (gl.*traits.genFunc)(1, &m_object);
44 const deUint32 err = gl.getError();
78 ObjectVector::ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects) argument
79 : m_gl (gl)

Completed in 717 milliseconds

1234567891011>>