Home
last modified time | relevance | path

Searched refs:pp_queue (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/postprocess/
Dpp_run.c94 assert(ppq->pp_queue); in pp_run()
160 ppq->pp_queue[0] (ppq, in, out, 0); in pp_run()
164 ppq->pp_queue[0] (ppq, in, ppq->tmp[0], 0); in pp_run()
165 ppq->pp_queue[1] (ppq, ppq->tmp[0], out, 1); in pp_run()
170 ppq->pp_queue[0] (ppq, in, ppq->tmp[0], 0); in pp_run()
174 ppq->pp_queue[i] (ppq, ppq->tmp[1], ppq->tmp[0], i); in pp_run()
177 ppq->pp_queue[i] (ppq, ppq->tmp[0], ppq->tmp[1], i); in pp_run()
181 ppq->pp_queue[i] (ppq, ppq->tmp[1], out, i); in pp_run()
184 ppq->pp_queue[i] (ppq, ppq->tmp[0], out, i); in pp_run()
Dpp_init.c66 ppq->pp_queue = CALLOC(num_filters, sizeof(pp_func)); in pp_init()
67 if (ppq->pp_queue == NULL) { in pp_init()
91 ppq->pp_queue[curpos] = pp_filters[i].main; in pp_init()
232 FREE(ppq->pp_queue); in pp_free()
Dpp_private.h69 pp_func *pp_queue; /* An array of pp_funcs */ member