/sdk/emulator/opengl/host/libs/GLESv1_dec/ |
D | gl.types | 14 GLubyte 8 0x%02x false 28 GLubyte* 32 0x%08x true
|
D | gl.in | 51 GL_ENTRY(void, glColor4ub, GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) 88 GL_ENTRY(const GLubyte *, glGetString, GLenum name)
|
D | gl.attrib | 167 #GLubyte* glGetString(GLenum name)
|
/sdk/emulator/opengl/host/libs/GLESv2_dec/ |
D | gl2.types | 14 GLubyte 8 0x%02x false 28 GLubyte* 32 0x%08x true
|
D | gl2.attrib | 191 #GLubyte* glGetString(GLenum name)
|
D | gl2.in | 72 GL_ENTRY(const GLubyte*, glGetString, GLenum name)
|
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
D | GLDispatch.h | 51 void (GLAPIENTRY *glColor4ub) (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 52 void (GLAPIENTRY *glColor4ubv) ( const GLubyte *v ); 90 const GLubyte * (GLAPIENTRY *glGetString) (GLenum name);
|
D | GLDispatch.cpp | 32 ret = (GL_FUNC_PTR)glXGetProcAddress((const GLubyte*)funcName); in getGLFuncAddress()
|
D | GLEScmImp.cpp | 248 GL_API const GLubyte * GL_APIENTRY glGetString( GLenum name) { in glGetString() 253 return (const GLubyte*)ctx->getVendorString(); in glGetString() 255 return (const GLubyte*)ctx->getRendererString(); in glGetString() 257 return (const GLubyte*)ctx->getVersionString(); in glGetString() 259 return (const GLubyte*)ctx->getExtensionString(); in glGetString() 416 GL_API void GL_APIENTRY glColor4ub( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) { in glColor4ub()
|
D | GLEScmContext.cpp | 174 static_cast<const GLubyte*>(indices_in)[i]) in drawPointsData()
|
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
D | gl_base_types.h | 38 typedef khronos_uint8_t GLubyte; typedef
|
/sdk/emulator/opengl/host/libs/Translator/GLcommon/ |
D | GLEScontext.cpp | 231 unsigned short index = indices_type == GL_UNSIGNED_BYTE? ((GLubyte *)indices)[i]: in convertFixedIndirectLoop() 256 unsigned short index = indices_type == GL_UNSIGNED_BYTE? ((GLubyte *)indices)[i]: in convertByteIndirectLoop() 288 static_cast<const GLubyte*>(indices)[i]); in indirectToBytesRanges() 355 GLubyte* b_indices =(GLubyte *)indices; in findMaxIndex() 507 void GLEScontext::initCapsLocked(const GLubyte * extensionString) in initCapsLocked() 517 const GLubyte* glslVersion = s_glDispatch.glGetString(GL_SHADING_LANGUAGE_VERSION); in initCapsLocked()
|
D | DummyGLfuncs.h | 63 const GLubyte * GLAPIENTRY dummy_glGetString(GLenum name); 99 void GLAPIENTRY dummy_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 100 void GLAPIENTRY dummy_glColor4ubv( const GLubyte *v );
|
D | DummyGLfuncs.cpp | 56 const GLubyte * GLAPIENTRY dummy_glGetString(GLenum name){ return 0;} in dummy_glGetString() 92 void GLAPIENTRY dummy_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha){} in dummy_glColor4ub() 93 void GLAPIENTRY dummy_glColor4ubv( const GLubyte *v ){} in dummy_glColor4ubv()
|
D | GLDispatch.cpp | 35 ret = (GL_FUNC_PTR)glXGetProcAddress((const GLubyte*)funcName); in getGLFuncAddress() 109 const GLubyte * (GLAPIENTRY *GLDispatch::glGetString) (GLenum) = NULL; 147 void (GLAPIENTRY *GLDispatch::glColor4ub)(GLubyte,GLubyte,GLubyte,GLubyte) = NULL; 148 void (GLAPIENTRY *GLDispatch::glColor4ubv)(const GLubyte *) = NULL;
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
D | gl_proc.h | 74 typedef void (GL_APIENTRY *glColor4ub_t) (GLubyte, GLubyte, GLubyte, GLubyte); 111 typedef const GLubyte* (GL_APIENTRY *glGetString_t) (GLenum);
|
/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/ |
D | GLDispatch.h | 73 static const GLubyte * (GLAPIENTRY *glGetString) (GLenum name); 126 static void (GLAPIENTRY *glColor4ub) (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 127 static void (GLAPIENTRY *glColor4ubv) ( const GLubyte *v );
|
D | GLEScontext.h | 187 void initCapsLocked(const GLubyte * extensionString);
|
/sdk/emulator/opengl/host/libs/Translator/include/GLES/ |
D | gl.h | 26 typedef khronos_uint8_t GLubyte; typedef 646 GL_API void GL_APIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 683 GL_API const GLubyte * GL_APIENTRY glGetString (GLenum name);
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
D | EglX11Api.cpp | 288 … glXSwapIntervalEXT = (GLXSWAPINTERVALEXT)glXGetProcAddress((const GLubyte*)"glXSwapIntervalEXT"); in swapInterval()
|
/sdk/emulator/opengl/host/libs/Translator/include/GLES2/ |
D | gl2.h | 30 typedef khronos_uint8_t GLubyte; typedef 545 GL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name);
|
/sdk/emulator/opengl/host/libs/Translator/GLES_V2/ |
D | GLESv2Imp.cpp | 1326 GL_APICALL const GLubyte* GL_APIENTRY glGetString(GLenum name){ in glGetString() 1328 static const GLubyte SHADING[] = "OpenGL ES GLSL ES 1.0.17"; in glGetString() 1331 return (const GLubyte*)ctx->getVendorString(); in glGetString() 1333 return (const GLubyte*)ctx->getRendererString(); in glGetString() 1335 return (const GLubyte*)ctx->getVersionString(); in glGetString() 1339 return (const GLubyte*)ctx->getExtensionString(); in glGetString()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/ |
D | entries.in | 69 void, glColor4ub, GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha 267 const GLubyte*, glGetStringi, GLenum name, GLuint index
|