/external/deqp/framework/opengl/wrapper/ |
H A D | glwInitES20Direct.cpp | 30 # include <OpenGLES/ES2/gl.h> 39 void initES20Direct (Functions* gl) argument 44 DE_UNREF(gl);
|
H A D | glwInitES30Direct.cpp | 30 # include <OpenGLES/ES3/gl.h> 39 void initES30Direct (Functions* gl) argument 44 DE_UNREF(gl);
|
H A D | glwWrapper.cpp | 45 void setCurrentThreadFunctions (const glw::Functions* gl) argument 47 s_functions = gl; 70 inline void set (const glw::Functions* gl) 72 deThreadLocal_set(m_ptr, (void*)gl); 89 void setCurrentThreadFunctions (const glw::Functions* gl) 91 s_functions.set(gl);
|
H A D | glwInitFunctions.cpp | 35 void initES20 (Functions* gl, const FunctionLoader* loader) argument 40 void initES30 (Functions* gl, const FunctionLoader* loader) argument 45 void initES31 (Functions* gl, const FunctionLoader* loader) argument 50 void initES32 (Functions* gl, const FunctionLoader* loader) argument 55 void initGL30Core (Functions* gl, const FunctionLoader* loader) argument 60 void initGL31Core (Functions* gl, const FunctionLoader* loader) argument 65 void initGL32Core (Functions* gl, const FunctionLoader* loader) argument 70 void initGL33Core (Functions* gl, const FunctionLoader* loader) argument 75 void initGL40Core (Functions* gl, const FunctionLoader* loader) argument 80 void initGL41Core (Functions* gl, cons argument 85 initGL42Core(Functions* gl, const FunctionLoader* loader) argument 90 initGL43Core(Functions* gl, const FunctionLoader* loader) argument 95 initGL44Core(Functions* gl, const FunctionLoader* loader) argument 100 initExtensionsGL(Functions* gl, const FunctionLoader* loader, int numExtensions, const char* const* extensions) argument 111 initExtensionsES(Functions* gl, const FunctionLoader* loader, int numExtensions, const char* const* extensions) argument [all...] |
/external/skia/src/gpu/gl/ |
H A D | GrGLGLSL.cpp | 13 bool GrGLGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation) { argument 15 GrGLSLVersion ver = GrGLGetGLSLVersion(gl); 19 switch (gl->fStandard) {
|
H A D | GrGLStencilAttachment.cpp | 24 const GrGLInterface* gl = gpuGL->glInterface(); local 25 GR_GL_CALL(gl, DeleteRenderbuffers(1, &fRenderbufferID));
|
/external/autotest/client/deps/glbench/src/ |
H A D | main.h | 17 #include <GL/gl.h> 93 namespace gl { namespace 99 using namespace gl;
|
H A D | glx_stuff.cc | 5 #include <GL/gl.h> 14 namespace gl { namespace
|
/external/deqp/modules/egl/ |
H A D | teglGLES2RenderUtil.cpp | 35 void clear (const glw::Functions& gl, int x, int y, int width, int height, const tcu::Vec4& color) argument 37 gl.enable(GL_SCISSOR_TEST); 38 gl.scissor(x, y, width, height); 39 gl.clearColor(color.x(), color.y(), color.z(), color.w()); 40 gl.clear(GL_COLOR_BUFFER_BIT); 41 gl.disable(GL_SCISSOR_TEST); 44 void readPixels (const glw::Functions& gl, tcu::Surface& dst, int x, int y, int width, int height) argument 47 gl.readPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr()); 50 void finish (const glw::Functions& gl) argument 52 gl [all...] |
/external/deqp/modules/gles31/functional/ |
H A D | es31fInfoLogQueryShared.cpp | 40 glu::CallLogWrapper& gl, 47 const tcu::ScopedLogSection section (gl.getLog(), "QueryAll", "Query all"); 51 (gl.*getInfoLog)(object, logLen, DE_NULL, &buf[0]); 52 GLS_COLLECT_GL_ERROR(result, gl.glGetError(), getterName); 61 const tcu::ScopedLogSection section (gl.getLog(), "QueryMore", "Query more"); 66 (gl.*getInfoLog)(object, logLen+2, &written, &buf[0]); 67 GLS_COLLECT_GL_ERROR(result, gl.glGetError(), getterName); 85 const tcu::ScopedLogSection section (gl.getLog(), "QueryLess", "Query less"); 89 (gl.*getInfoLog)(object, 2, &written, &buf[0]); 90 GLS_COLLECT_GL_ERROR(result, gl 39 verifyInfoLogQuery(tcu::ResultCollector& result, glu::CallLogWrapper& gl, int logLen, glw::GLuint object, void (glu::CallLogWrapper::* getInfoLog)(glw::GLuint, glw::GLsizei, glw::GLsizei*, glw::GLchar*), const char* getterName) argument [all...] |
/external/elfutils/tests/ |
H A D | get-pubnames.c | 32 callback (Dwarf *dbg, Dwarf_Global *gl, void *arg __attribute__ ((unused))) argument 37 globcnt++, gl->name, (unsigned long long int) gl->die_offset, 38 (unsigned long long int) gl->cu_offset); 42 if (dwarf_offdie (dbg, gl->cu_offset, &cu_die) == NULL 53 if (dwarf_offdie (dbg, gl->die_offset, &die) == NULL
|
/external/replicaisland/src/com/replica/replicaisland/ |
H A D | BufferLibrary.java | 44 public void generateHardwareBuffers(GL10 gl) { argument 49 grid.generateHardwareBuffers(gl); 54 public void releaseHardwareBuffers(GL10 gl) { argument 59 grid.releaseHardwareBuffers(gl);
|
H A D | OpenGLSystem.java | 39 public OpenGLSystem(GL10 gl) { argument 40 sGL = gl; 43 public static final void setGL(GL10 gl) { argument 44 sGL = gl;
|
/external/deqp/framework/opengl/ |
H A D | gluProgramInterfaceQuery.cpp | 33 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam) argument 36 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, 1, DE_NULL, (int*)&value); 37 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetProgramResourceiv()"); 41 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst) argument 43 const int length = getProgramResourceInt(gl, program, programInterface, index, GL_NAME_LENGTH); 48 gl.getProgramResourceName(program, programInterface, index, (int)buf.size(), DE_NULL, &buf[0]); 49 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetProgramResourceName()"); 61 static void getProgramInterfaceActiveVariables (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::vector<int>& activeVariables) argument 63 const int numActiveVariables = getProgramResourceInt(gl, program, programInterface, index, GL_NUM_ACTIVE_VARIABLES); 69 gl 74 getProgramInterfaceBlockInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info) argument 86 getProgramInterfaceVariableInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info) argument [all...] |
H A D | gluCallLogWrapper.cpp | 35 CallLogWrapper::CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log) argument 36 : m_gl (gl)
|
H A D | gluObjectWrapper.cpp | 36 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits) argument 37 : m_gl (gl) 41 (gl.*traits.genFunc)(1, &m_object); 45 const deUint32 err = gl.getError(); 58 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits, deUint32 object) argument 59 : m_gl (gl) 88 ObjectVector::ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects) argument 89 : m_gl (gl)
|
H A D | 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 local 128 const glw::Functions& gl = context.getFunctions(); local [all...] |
/external/elfutils/libdw/ |
H A D | dwarf_getpubnames.c | 193 Dwarf_Global gl; local 195 gl.cu_offset = (dbg->pubnames_sets[cnt].cu_offset 204 gl.die_offset = read_4ubyte_unaligned_inc (dbg, readp); 206 gl.die_offset = read_8ubyte_unaligned_inc (dbg, readp); 209 if (gl.die_offset == 0) 213 gl.die_offset += dbg->pubnames_sets[cnt].cu_offset; 215 gl.name = (char *) readp; 216 readp = (unsigned char *) memchr (gl.name, '\0', endp - readp); 226 if (callback (dbg, &gl, arg) != DWARF_CB_OK)
|
/external/clang/test/CodeGen/ |
H A D | systemz-inline-asm.c | 4 unsigned long gl; variable
|
/external/deqp/modules/gles2/performance/ |
H A D | es2pRedundantStateChangeTests.cpp | 55 virtual void renderTest (const glw::Functions& gl); 56 virtual void renderReference (const glw::Functions& gl); 57 virtual void changeState (const glw::Functions& gl) = 0; 73 void RedundantStateChangeCase::renderTest (const glw::Functions& gl) argument 77 changeState(gl); 78 callDraw(gl); 82 void RedundantStateChangeCase::renderReference (const glw::Functions& gl) argument 84 changeState(gl); 87 callDraw(gl); 111 virtual void setupInitialState (const glw::Functions& gl)\ [all...] |
H A D | es2pStateChangeTests.cpp | 55 virtual void renderTest (const glw::Functions& gl); 56 virtual void renderReference (const glw::Functions& gl); 58 virtual void changeState (const glw::Functions& gl, int stateId) = 0; 74 void StateChangeCase::renderTest (const glw::Functions& gl) argument 78 changeState(gl, 0); 79 callDraw(gl); 81 changeState(gl, 1); 82 callDraw(gl); 86 void StateChangeCase::renderReference (const glw::Functions& gl) argument 88 changeState(gl, [all...] |
/external/deqp/modules/gles2/ |
H A D | 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");
|
H A D | tes2TestPackage.cpp | 86 const glw::Functions& gl = renderCtx.getFunctions(); local 87 gl.clearColor(0.125f, 0.25f, 0.5f, 1.f); 88 gl.clear(GL_COLOR_BUFFER_BIT);
|
/external/deqp/modules/gles3/performance/ |
H A D | es3pRedundantStateChangeTests.cpp | 55 virtual void renderTest (const glw::Functions& gl); 56 virtual void renderReference (const glw::Functions& gl); 57 virtual void changeState (const glw::Functions& gl) = 0; 73 void RedundantStateChangeCase::renderTest (const glw::Functions& gl) argument 77 changeState(gl); 78 callDraw(gl); 82 void RedundantStateChangeCase::renderReference (const glw::Functions& gl) argument 84 changeState(gl); 87 callDraw(gl); 111 virtual void setupInitialState (const glw::Functions& gl)\ [all...] |
H A D | es3pStateChangeTests.cpp | 55 virtual void renderTest (const glw::Functions& gl); 56 virtual void renderReference (const glw::Functions& gl); 58 virtual void changeState (const glw::Functions& gl, int stateId) = 0; 74 void StateChangeCase::renderTest (const glw::Functions& gl) argument 78 changeState(gl, 0); 79 callDraw(gl); 81 changeState(gl, 1); 82 callDraw(gl); 86 void StateChangeCase::renderReference (const glw::Functions& gl) argument 88 changeState(gl, [all...] |