Home
last modified time | relevance | path

Searched refs:owned_objects (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/vega/
Dvg_context.c131 ctx->owned_objects[VG_OBJECT_PAINT] = cso_hash_create(); in vg_create_context()
132 ctx->owned_objects[VG_OBJECT_IMAGE] = cso_hash_create(); in vg_create_context()
133 ctx->owned_objects[VG_OBJECT_MASK] = cso_hash_create(); in vg_create_context()
134 ctx->owned_objects[VG_OBJECT_FONT] = cso_hash_create(); in vg_create_context()
135 ctx->owned_objects[VG_OBJECT_PATH] = cso_hash_create(); in vg_create_context()
171 cso_hash_delete(ctx->owned_objects[VG_OBJECT_PAINT]); in vg_destroy_context()
172 cso_hash_delete(ctx->owned_objects[VG_OBJECT_IMAGE]); in vg_destroy_context()
173 cso_hash_delete(ctx->owned_objects[VG_OBJECT_MASK]); in vg_destroy_context()
174 cso_hash_delete(ctx->owned_objects[VG_OBJECT_FONT]); in vg_destroy_context()
175 cso_hash_delete(ctx->owned_objects[VG_OBJECT_PATH]); in vg_destroy_context()
[all …]
Dvg_context.h111 struct cso_hash *owned_objects[VG_OBJECT_LAST]; member