Home
last modified time | relevance | path

Searched refs:buf_obj (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/mesa/drivers/common/
Dmeta.h243 struct gl_buffer_object *buf_obj; member
267 struct gl_buffer_object *buf_obj; member
278 struct gl_buffer_object *buf_obj; member
288 struct gl_buffer_object *buf_obj; member
301 struct gl_buffer_object *buf_obj; member
311 struct gl_buffer_object *buf_obj; member
336 struct gl_buffer_object *buf_obj; member
348 struct gl_buffer_object *buf_obj; member
523 GLuint *VAO, struct gl_buffer_object **buf_obj,
530 GLuint *VAO, struct gl_buffer_object **buf_obj,
Dmeta.c325 GLuint *VAO, struct gl_buffer_object **buf_obj, in _mesa_meta_setup_vertex_objects() argument
332 assert(*buf_obj == NULL); in _mesa_meta_setup_vertex_objects()
342 *buf_obj = ctx->Driver.NewBufferObject(ctx, 0xDEADBEEF); in _mesa_meta_setup_vertex_objects()
343 if (*buf_obj == NULL) in _mesa_meta_setup_vertex_objects()
346 _mesa_buffer_data(ctx, *buf_obj, GL_NONE, 4 * sizeof(struct vertex), NULL, in _mesa_meta_setup_vertex_objects()
359 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
369 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
380 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
390 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
402 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
[all …]
Dmeta_generate_mipmap.c134 _mesa_reference_buffer_object(ctx, &mipmap->buf_obj, NULL); in _mesa_meta_glsl_generate_mipmap_cleanup()
191 _mesa_meta_setup_vertex_objects(ctx, &mipmap->VAO, &mipmap->buf_obj, true, in _mesa_meta_GenerateMipmap()
195 _mesa_meta_setup_ff_tnl_for_blit(ctx, &mipmap->VAO, &mipmap->buf_obj, 3); in _mesa_meta_GenerateMipmap()
338 _mesa_buffer_data(ctx, mipmap->buf_obj, GL_NONE, sizeof(verts), verts, in _mesa_meta_GenerateMipmap()
Dmeta_blit.c74 _mesa_meta_setup_vertex_objects(ctx, &blit->VAO, &blit->buf_obj, true, in setup_glsl_blit_framebuffer()
189 &ctx->Meta->Blit.buf_obj, in blitframebuffer_texture()
280 _mesa_buffer_sub_data(ctx, blit->buf_obj, 0, sizeof(verts), verts); in blitframebuffer_texture()
510 _mesa_reference_buffer_object(ctx, &blit->buf_obj, NULL); in _mesa_meta_glsl_blit_cleanup()
/external/python/cpython3/Modules/
D_pickle.c1413 PyObject *buf_obj = PyMemoryView_FromMemory(buf, n, PyBUF_WRITE); in _Unpickler_ReadInto() local
1414 if (buf_obj == NULL) { in _Unpickler_ReadInto()
1417 PyObject *read_size_obj = _Pickle_FastCall(self->readinto, buf_obj); in _Unpickler_ReadInto()