HomeSort by relevance Sort by last modified time
    Searched refs:apientry (Results 1 - 4 of 4) sorted by null

  /frameworks/native/opengl/libs/GLES_trace/tools/
testgenapi.py 26 apientry = 'void API_ENTRY(glCopyTexSubImage2D)(GLenum target, GLint level, ' \
32 api = ApiCall("GL", apientry, callsite)
genapi.py 274 def __init__(self, prefix, apientry, callsite):
285 self.ret = self.getReturnType(apientry)
286 self.arglist = self.getArgList(apientry)
294 def getReturnType(self, apientry):
296 m = re.search(self.API_ENTRY_REGEX, apientry)
299 % (apientry, self.API_ENTRY_REGEX))
303 def getArgList(self, apientry):
305 m = re.search(self.API_ENTRY_REGEX, apientry)
308 % (apientry, self.API_ENTRY_REGEX))
  /frameworks/native/opengl/tools/glgen2/registry/
genheaders.py 177 '#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)',
184 '#ifndef APIENTRY',
185 '#define APIENTRY',
188 '#define APIENTRYP APIENTRY *',
215 '#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)',
286 apientry = 'APIENTRY ',
305 apientry = 'APIENTRY ',
324 apientry = 'GL_APIENTRY '
    [all...]
reg.py 284 # apientry - string to use for the calling convention macro,
285 # in typedefs, such as APIENTRY.
307 apientry = '',
319 self.apientry = apientry
476 # For prototypes, add APIENTRY macro before the name
491 pdecl += self.genOpts.apientry + text + tail
607 # Replace <apientry /> tags with an APIENTRY-style string
613 if (elem.tag == 'apientry')
    [all...]

Completed in 95 milliseconds