| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | fbobject.h | 221 _mesa_DeleteFramebuffers(GLsizei n, const GLuint *framebuffers); 224 _mesa_GenFramebuffers(GLsizei n, GLuint *framebuffers); 227 _mesa_CreateFramebuffers(GLsizei n, GLuint *framebuffers);
|
| H A D | fbobject.c | 1849 * non-bound framebuffers. Detaching the image from any 1850 * non-bound framebuffers is the responsibility of the 2369 /* Invalidate the framebuffers the renderbuffer is attached in. */ 2774 return; /* can't render to texture with winsys framebuffers */ 2888 * OK, now bind the new Draw/Read framebuffers, if they're changing. 2950 _mesa_DeleteFramebuffers(GLsizei n, const GLuint *framebuffers) argument 2963 if (framebuffers[i] > 0) { 2965 fb = _mesa_lookup_framebuffer(ctx, framebuffers[i]); 2967 assert(fb == &DummyFramebuffer || fb->Name == framebuffers[i]); 2982 _mesa_HashRemove(ctx->Shared->FrameBuffers, framebuffers[ 3002 create_framebuffers(GLsizei n,GLuint * framebuffers,bool dsa) argument 3046 _mesa_GenFramebuffers(GLsizei n,GLuint * framebuffers) argument 3053 _mesa_CreateFramebuffers(GLsizei n,GLuint * framebuffers) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | fbobject.h | 230 _mesa_DeleteFramebuffers(GLsizei n, const GLuint *framebuffers); 233 _mesa_GenFramebuffers(GLsizei n, GLuint *framebuffers); 236 _mesa_CreateFramebuffers(GLsizei n, GLuint *framebuffers);
|
| H A D | fbobject.c | 2039 * non-bound framebuffers. Detaching the image from any 2040 * non-bound framebuffers is the responsibility of the 2576 /* Invalidate the framebuffers the renderbuffer is attached in. */ 3043 return; /* can't render to texture with winsys framebuffers */ 3159 * OK, now bind the new Draw/Read framebuffers, if they're changing. 3220 _mesa_DeleteFramebuffers(GLsizei n, const GLuint *framebuffers) argument 3233 if (framebuffers[i] > 0) { 3235 fb = _mesa_lookup_framebuffer(ctx, framebuffers[i]); 3237 assert(fb == &DummyFramebuffer || fb->Name == framebuffers[i]); 3252 _mesa_HashRemove(ctx->Shared->FrameBuffers, framebuffers[ 3272 create_framebuffers(GLsizei n,GLuint * framebuffers,bool dsa) argument 3313 _mesa_GenFramebuffers(GLsizei n,GLuint * framebuffers) argument 3320 _mesa_CreateFramebuffers(GLsizei n,GLuint * framebuffers) argument [all...] |
| /xsrc/external/mit/libdrm/dist/man/ |
| H A D | drm.7.rst | 61 API provided by DRM. This includes allocating framebuffers, selecting 68 Textures, framebuffers, command-buffers and all other kinds of commands
|
| H A D | drm-memory.7.rst | 23 Textures, framebuffers, command buffers and more need to be stored in memory 44 with the DRM API. You can create framebuffers with **drmModeAddFB**\ (3) and
|
| H A D | drm-kms.7.rst | 75 framebuffers and can control their behavior. Framebuffers rely on the
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 18.3.3.rst | 137 - st/mesa: purge framebuffers when unbinding a context 166 - etnaviv: Consolidate buffer references from framebuffers
|
| H A D | 19.0.5.rst | 48 - st/mesa: purge framebuffers with current context after unbinding
|
| H A D | 10.1.2.rst | 142 - st/mesa: Fix NULL pointer dereference for incomplete framebuffers
|
| H A D | 18.3.4.rst | 92 - nvc0: we have 16k-sized framebuffers, fix default scissors
|
| H A D | 17.1.6.rst | 60 - i965: Resolve framebuffers before signaling the fence
|
| H A D | 11.1.3.rst | 70 [Mesa AMD&swrast] Texture views attached as framebuffers return their
|
| H A D | 9.0.3.rst | 211 - mesa: Allow glReadBuffer(GL_NONE) for winsys framebuffers.
|
| /xsrc/external/mit/MesaLib.old/dist/include/GLES/ |
| H A D | glext.h | 298 typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSOESPROC) (GLsizei n, const GLuint *framebuffers); 299 typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSOESPROC) (GLsizei n, GLuint *framebuffers); 314 GL_API void GL_APIENTRY glDeleteFramebuffersOES (GLsizei n, const GLuint *framebuffers); 315 GL_API void GL_APIENTRY glGenFramebuffersOES (GLsizei n, GLuint *framebuffers); 861 typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); 870 GL_API void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers);
|
| /xsrc/external/mit/MesaLib/dist/include/GLES/ |
| H A D | glext.h | 302 typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSOESPROC) (GLsizei n, const GLuint *framebuffers); 303 typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSOESPROC) (GLsizei n, GLuint *framebuffers); 318 GL_API void GL_APIENTRY glDeleteFramebuffersOES (GLsizei n, const GLuint *framebuffers); 319 GL_API void GL_APIENTRY glGenFramebuffersOES (GLsizei n, GLuint *framebuffers); 886 typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); 895 GL_API void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers);
|
| /xsrc/external/mit/MesaLib.old/dist/include/GLES2/ |
| H A D | gl2.h | 412 typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); 434 typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); 555 GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); 577 GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers);
|
| /xsrc/external/mit/MesaLib/dist/include/GLES2/ |
| H A D | gl2.h | 412 typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); 434 typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); 555 GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); 577 GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers);
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/overlay-layer/ |
| H A D | overlay.cpp | 140 VkFramebuffer *framebuffers; member in struct:swapchain_data 941 render_pass_info.framebuffer = data->framebuffers[image_index]; 1459 data->framebuffers = ralloc_array(data, VkFramebuffer, data->n_images); 1496 NULL, &data->framebuffers[i])); 1524 device_data->vtable.DestroyFramebuffer(device_data->device, data->framebuffers[i], NULL);
|
| /xsrc/external/mit/libdrm/dist/tests/modetest/ |
| H A D | modetest.c | 2136 fprintf(stderr, "\t-f\tlist framebuffers\n"); 2189 int encoders = 0, connectors = 0, crtcs = 0, planes = 0, framebuffers = 0; local in function:main 2234 framebuffers = 1; 2310 encoders = connectors = crtcs = planes = framebuffers = 1; 2349 dump_resource(&dev, framebuffers);
|
| /xsrc/external/mit/MesaLib/dist/src/vulkan/overlay-layer/ |
| H A D | overlay.cpp | 156 VkFramebuffer *framebuffers; member in struct:swapchain_data 1180 render_pass_info.framebuffer = data->framebuffers[image_index]; 1740 data->framebuffers = ralloc_array(data, VkFramebuffer, data->n_images); 1777 NULL, &data->framebuffers[i])); 1806 device_data->vtable.DestroyFramebuffer(device_data->device, data->framebuffers[i], NULL);
|
| /xsrc/external/mit/MesaLib/src/mapi/es2api/ |
| H A D | glapi_mapi_tmp.h | 74 GLAPI void APIENTRY glDeleteFramebuffers(GLsizei n, const GLuint *framebuffers); 121 GLAPI void APIENTRY glGenFramebuffers(GLsizei n, GLuint *framebuffers); 802 GLAPI void APIENTRY glDeleteFramebuffers(GLsizei n, const GLuint *framebuffers) argument 806 ((void (APIENTRY *)(GLsizei n, const GLuint *framebuffers)) _func)(n, framebuffers); 1131 GLAPI void APIENTRY glGenFramebuffers(GLsizei n, GLuint *framebuffers) argument 1135 ((void (APIENTRY *)(GLsizei n, GLuint *framebuffers)) _func)(n, framebuffers);
|
| /xsrc/external/mit/MesaLib.old/dist/include/GLES3/ |
| H A D | gl3.h | 412 typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); 434 typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); 555 GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); 577 GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers);
|
| H A D | gl31.h | 414 typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); 436 typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); 557 GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); 579 GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers);
|
| /xsrc/external/mit/MesaLib/dist/include/GLES3/ |
| H A D | gl3.h | 412 typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); 434 typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); 555 GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); 577 GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers);
|