Lines Matching refs:match

188         match = re.search(flush_batch_match, line)
189 if match is not None:
191 renderpass = RenderPass(cleared=match.group(2),
192 gmem_reason=match.group(3),
193 num_draws=match.group(4))
197 match = re.search(framebuffer_match, line)
198 if match is not None:
200 renderpass.fb = FramebufferState(width=match.group(1),
201 height=match.group(2),
202 layers=match.group(3),
203 samples=match.group(4),
204 nr_cbufs=match.group(5))
207 match = re.search(surface_match, line)
208 if match is not None:
209 surface = SurfaceState(width=match.group(1),
210 height=match.group(2),
211 samples=match.group(3),
212 format=match.group(4))
216 match = re.search(gmem_match, line)
217 if match is not None:
219 renderpass.binning_state = BinningState(nbins_x=match.group(1),
220 nbins_y=match.group(2),
221 bin_w=match.group(3),
222 bin_h=match.group(4))
226 match = re.search(sysmem_match, line)
227 if match is not None:
232 match = re.search(state_restore_match, line)
233 if match is not None:
234 renderpass.state_restore_time += int(match.group(1))
237 match = re.search(prologue_match, line)
238 if match is not None:
239 renderpass.prologue_time += int(match.group(1))
242 match = re.search(binning_ib_match, line)
243 if match is not None:
245 renderpass.binning_time += int(match.group(1))
248 match = re.search(vsc_overflow_match, line)
249 if match is not None:
251 renderpass.vsc_overflow_test_time += int(match.group(1))
254 match = re.search(draw_ib_match, line)
255 if match is not None:
256 renderpass.draw_time += int(match.group(1))
259 match = re.search(resolve_match, line)
260 if match is not None:
262 renderpass.resolve_time += int(match.group(1))
265 match = re.search(start_clear_restore_match, line)
266 if match is not None:
267 renderpass.fast_cleared = match.group(1)
270 match = re.search(end_clear_restore_match, line)
271 if match is not None:
272 renderpass.restore_clear_time += int(match.group(1))
275 match = re.search(compute_match, line)
276 if match is not None:
280 match = re.search(blit_match, line)
281 if match is not None:
285 match = re.search(eof_match, line)
286 if match is not None:
287 frame.frame_nr = int(match.group(1))
294 match = re.search(elapsed_match, line)
295 if match is not None:
296 time = int(match.group(1))