Home | History | Annotate | Download | only in svga

Lines Matching defs:predicate

66    struct pipe_query *predicate;   /** The associated query that can be used for predicate */
696 * predicate query along with the occlusion counter query. So when
698 * query of occlusion predicate type will be used
701 sq->predicate = svga_create_query(pipe, PIPE_QUERY_OCCLUSION_PREDICATE, index);
790 /* make sure to also destroy any associated predicate query */
791 if (sq->predicate)
792 svga_destroy_query(pipe, sq->predicate);
865 /* also need to start the associated occlusion predicate query */
866 if (sq->predicate) {
868 status = begin_query_vgpu10(svga, svga_query(sq->predicate));
977 /* also need to end the associated occlusion predicate query */
978 if (sq->predicate) {
980 status = end_query_vgpu10(svga, svga_query(sq->predicate));
1215 assert(sq->predicate);
1218 * predicate query.
1220 sq = svga_query(sq->predicate);