Home
last modified time | relevance | path

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

/third_party/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.c326 GLuint *VAO, struct gl_buffer_object **buf_obj, in _mesa_meta_setup_vertex_objects() argument
333 assert(*buf_obj == NULL); in _mesa_meta_setup_vertex_objects()
343 *buf_obj = ctx->Driver.NewBufferObject(ctx, 0xDEADBEEF); in _mesa_meta_setup_vertex_objects()
344 if (*buf_obj == NULL) in _mesa_meta_setup_vertex_objects()
347 _mesa_buffer_data(ctx, *buf_obj, GL_NONE, 4 * sizeof(struct vertex), NULL, in _mesa_meta_setup_vertex_objects()
360 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
370 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
381 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
391 *buf_obj, 0, sizeof(struct vertex), false, in _mesa_meta_setup_vertex_objects()
403 *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()
/third_party/node/test/cctest/
Dtest_environment.cc391 v8::Local<v8::Object> buf_obj = node::Buffer::New( in TEST_F() local
400 CHECK(buf_obj->IsUint8Array()); in TEST_F()
401 ab = buf_obj.As<v8::Uint8Array>()->Buffer(); in TEST_F()
/third_party/boost/boost/asio/detail/impl/
Dbuffer_sequence_adapter.ipp108 Platform::Object^ buf_obj = reinterpret_cast<Platform::Object^>(insp.Get());
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Dbuffer_sequence_adapter.ipp108 Platform::Object^ buf_obj = reinterpret_cast<Platform::Object^>(insp.Get());
/third_party/python/Modules/
D_pickle.c1414 PyObject *buf_obj = PyMemoryView_FromMemory(buf, n, PyBUF_WRITE); in _Unpickler_ReadInto() local
1415 if (buf_obj == NULL) { in _Unpickler_ReadInto()
1418 PyObject *read_size_obj = _Pickle_FastCall(self->readinto, buf_obj); in _Unpickler_ReadInto()