X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=specs%2Fglesapi.py;h=2bf2853167d891dad3c8e782e13b316593fcbe0c;hb=09826de1b4defc6a42fb7ddfe46733ccc70b00b8;hp=8b1a67110dd6d5740df1cca9799e16fd866e7de2;hpb=cfb0f40c7afa4e1c468aa952a8c93c3487ffe56f;p=apitrace diff --git a/specs/glesapi.py b/specs/glesapi.py index 8b1a671..2bf2853 100644 --- a/specs/glesapi.py +++ b/specs/glesapi.py @@ -165,6 +165,14 @@ glesapi.addFunctions([ GlFunction(Void, "glGetProgramBinaryOES", [(GLprogram, "program"), (GLsizei, "bufSize"), Out(Pointer(GLsizei), "length"), Out(Pointer(GLenum), "binaryFormat"), Out(OpaqueBlob(GLvoid, "length ? *length : bufSize"), "binary")], sideeffects=False), GlFunction(Void, "glProgramBinaryOES", [(GLprogram, "program"), (GLenum, "binaryFormat"), (Blob(Const(GLvoid), "length"), "binary"), (GLsizei, "length")]), + # GL_OES_draw_texture + GlFunction(Void, "glDrawTexfOES", [(GLfloat, "x"), (GLfloat, "y"), (GLfloat, "z"), (GLfloat, "width"), (GLfloat, "height")]), + GlFunction(Void, "glDrawTexfvOES", [(Array(Const(GLfloat), 4), "coords")]), + GlFunction(Void, "glDrawTexiOES", [(GLint, "x"), (GLint, "y"), (GLint, "z"), (GLint, "width"), (GLint, "height")]), + GlFunction(Void, "glDrawTexivOES", [(Array(Const(GLint), 4), "coords")]), + GlFunction(Void, "glDrawTexsOES", [(GLshort, "x"), (GLshort, "y"), (GLshort, "z"), (GLshort, "width"), (GLshort, "height")]), + GlFunction(Void, "glDrawTexsvOES", [(Array(Const(GLshort), 4), "coords")]), + # GL_EXT_discard_framebuffer GlFunction(Void, "glDiscardFramebufferEXT", [(GLenum, "target"), (GLsizei, "numAttachments"), (Array(Const(GLenum), "numAttachments"), "attachments")]),