Home
last modified time | relevance | path

Searched refs:numAttachments (Results 1 – 25 of 34) sorted by relevance

12

/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DGLESv30Imp.cpp611 … GLsizei numAttachments, const GLenum* attachments) { in sGetEmulatedAttachmentList() argument
612 std::vector<GLenum> res(numAttachments); in sGetEmulatedAttachmentList()
613 memcpy(&res[0], attachments, numAttachments * sizeof(GLenum)); in sGetEmulatedAttachmentList()
619 for (int i = 0; i < numAttachments; i++) { in sGetEmulatedAttachmentList()
628 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GL… in glInvalidateFramebuffer() argument
637 for (int i = 0; i < numAttachments; i++) { in glInvalidateFramebuffer()
645 …GLenum> emulatedAttachments = sGetEmulatedAttachmentList(ctx, target, numAttachments, attachments); in glInvalidateFramebuffer()
647 ctx->dispatcher().glInvalidateFramebuffer(target, numAttachments, &emulatedAttachments[0]); in glInvalidateFramebuffer()
653 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const… in glInvalidateSubFramebuffer() argument
662 for (int i = 0; i < numAttachments; i++) { in glInvalidateSubFramebuffer()
[all …]
/hardware/google/gfxstream/include/OpenGLESDispatch/
Dgles3_only_functions.h68 …idateFramebuffer, (GLenum target, GLsizei numAttachments, const GLenum * attachments), (target, nu…
69 …m target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLs…
Dgles3_only_static_translator_namespaced_header.h68 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GL…
69 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const…
/hardware/google/gfxstream/host/gl/OpenGLESDispatch/
Dgles3_only_dispatch_logging_wrappers.impl294 void glInvalidateFramebuffer_dispatchLoggingWrapper(GLenum target, GLsizei numAttachments, const GL…
295 …EBUG_LOG("glInvalidateFramebuffer(target:0x%X, numAttachments:%d, attachments:%p)", target, numAtt…
296 GLDispatch::glInvalidateFramebuffer_underlying(target, numAttachments, attachments);
299 void glInvalidateSubFramebuffer_dispatchLoggingWrapper(GLenum target, GLsizei numAttachments, const…
300 …teSubFramebuffer(target:0x%X, numAttachments:%d, attachments:%p, x:%d, y:%d, width:%d, height:%d)"…
301 …GLDispatch::glInvalidateSubFramebuffer_underlying(target, numAttachments, attachments, x, y, width…
Dgles3_only.entries93 void glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments);
94 void glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, G…
/hardware/google/gfxstream/codegen/gles2/
Dgles2.attrib430 #void glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, GLenum *attachments)
432 len attachments (numAttachments * sizeof(GLenum))
908 len attachments (numAttachments * sizeof(GLenum))
911 len attachments (numAttachments * sizeof(GLenum))
Dgles2.in164 GL_ENTRY(void, glDiscardFramebufferEXT, GLenum target, GLsizei numAttachments, const GLenum *attach…
389 GL_ENTRY(void, glInvalidateFramebuffer, GLenum target, GLsizei numAttachments, const GLenum *attach…
390 GL_ENTRY(void, glInvalidateSubFramebuffer, GLenum target, GLsizei numAttachments, const GLenum *att…
/hardware/google/gfxstream/common/detector/
DGlesFuncs.h344 …idateFramebuffer, (GLenum target, GLsizei numAttachments, const GLenum * attachments), (target, nu…
345 …m target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLs…
/hardware/google/gfxstream/guest/GLESv2_enc/
Dgl2_entry.cpp166 void glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum* attachments);
294 void glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments);
295 …void glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, …
1422 void glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum* attachments) in glDiscardFramebufferEXT() argument
1425 ctx->glDiscardFramebufferEXT(ctx, target, numAttachments, attachments); in glDiscardFramebufferEXT()
2194 void glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments) in glInvalidateFramebuffer() argument
2197 ctx->glInvalidateFramebuffer(ctx, target, numAttachments, attachments); in glInvalidateFramebuffer()
2200 void glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, G… in glInvalidateSubFramebuffer() argument
2203 ctx->glInvalidateSubFramebuffer(ctx, target, numAttachments, attachments, x, y, width, height); in glInvalidateSubFramebuffer()
DGL2Encoder.h830 …static void s_glInvalidateFramebuffer(void* self, GLenum target, GLsizei numAttachments, const GLe…
831 …static void s_glInvalidateSubFramebuffer(void* self, GLenum target, GLsizei numAttachments, const …
DGL2Encoder.cpp6134 void GL2Encoder::s_glInvalidateFramebuffer(void* self, GLenum target, GLsizei numAttachments, const… in s_glInvalidateFramebuffer() argument
6139 SET_ERROR_IF(numAttachments < 0, GL_INVALID_VALUE); in s_glInvalidateFramebuffer()
6143 for (GLsizei i = 0; i < numAttachments; ++i) { in s_glInvalidateFramebuffer()
6149 ctx->m_glInvalidateFramebuffer_enc(ctx, target, numAttachments, attachments); in s_glInvalidateFramebuffer()
6152 void GL2Encoder::s_glInvalidateSubFramebuffer(void* self, GLenum target, GLsizei numAttachments, co… in s_glInvalidateSubFramebuffer() argument
6155 SET_ERROR_IF(numAttachments < 0, GL_INVALID_VALUE); in s_glInvalidateSubFramebuffer()
6160 for (GLsizei i = 0; i < numAttachments; ++i) { in s_glInvalidateSubFramebuffer()
6165 …ctx->m_glInvalidateSubFramebuffer_enc(ctx, target, numAttachments, attachments, x, y, width, heigh… in s_glInvalidateSubFramebuffer()
/hardware/google/gfxstream/guest/mesa/include/GLES3/
Dgl3.h1075 typedef void (GL_APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, …
1076 …APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum …
1180 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
1181 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
Dgl31.h1075 typedef void (GL_APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, …
1076 …APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum …
1180 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
1181 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
Dgl32.h1075 typedef void (GL_APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, …
1076 …APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum …
1180 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
1181 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
/hardware/google/gfxstream/codegen/gles1/
Dgles1.attrib594 #void glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments)
597 len attachments (numAttachments * sizeof(const GLenum))
Dgles1.in267 GL_ENTRY(void, glDiscardFramebufferEXT, GLenum target, GLsizei numAttachments, const GLenum *attach…
/hardware/google/gfxstream/include/GLES/
Dglext.h888 GL_API void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenu…
890 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, …
/hardware/google/gfxstream/guest/mesa/include/GLES/
Dglext.h616 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, …
618 GL_API void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenu…
/hardware/google/gfxstream/common/opengl/include/GLES/
Dglext.h1031 GL_API void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenu…
1033 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, …
/hardware/google/gfxstream/common/opengl/include/GLES3/
Dgl3.h928 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
929 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
Dgl31.h928 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
929 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
/hardware/google/gfxstream/include/GLES3/
Dgl3.h928 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
929 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
Dgl32.h1075 typedef void (GL_APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, …
1076 …APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum …
1180 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
1181 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
Dgl31.h928 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G…
929 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
/hardware/google/gfxstream/guest/GLESv1_enc/
Dgl_entry.cpp267 void glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum* attachments);
1873 void glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum* attachments) in glDiscardFramebufferEXT() argument
1876 ctx->glDiscardFramebufferEXT(ctx, target, numAttachments, attachments); in glDiscardFramebufferEXT()

12