Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/state_tracker/
Dst_pbo.c570 STATIC_ASSERT(ARRAY_SIZE(st->pbo.upload_fs) == ST_NUM_PBO_CONVERSIONS); in st_pbo_get_upload_fs()
574 if (!st->pbo.upload_fs[conversion]) in st_pbo_get_upload_fs()
575 st->pbo.upload_fs[conversion] = create_fs(st, false, 0, conversion); in st_pbo_get_upload_fs()
577 return st->pbo.upload_fs[conversion]; in st_pbo_get_upload_fs()
642 for (i = 0; i < ARRAY_SIZE(st->pbo.upload_fs); ++i) { in st_destroy_pbo_helpers()
643 if (st->pbo.upload_fs[i]) { in st_destroy_pbo_helpers()
644 cso_delete_fragment_shader(st->cso_context, st->pbo.upload_fs[i]); in st_destroy_pbo_helpers()
645 st->pbo.upload_fs[i] = NULL; in st_destroy_pbo_helpers()
Dst_context.h227 void *upload_fs[3]; member