Lines Matching refs:snapshot
106 * snapshot objects based on the run-time configurable batch_size
170 struct intel_measure_snapshot *snapshot = &(measure->base.snapshots[index]);
171 memset(snapshot, 0, sizeof(*snapshot));
172 snapshot->type = type;
173 snapshot->count = (unsigned) count;
174 snapshot->event_count = measure->base.event_count;
175 snapshot->event_name = event_name;
176 // snapshot->framebuffer = framebuffer;
179 snapshot->cs = (uintptr_t) cmd_buffer->state.compute.pipeline->cs;
183 snapshot->vs = (uintptr_t) pipeline->shaders[MESA_SHADER_VERTEX];
184 snapshot->tcs = (uintptr_t) pipeline->shaders[MESA_SHADER_TESS_CTRL];
185 snapshot->tes = (uintptr_t) pipeline->shaders[MESA_SHADER_TESS_EVAL];
186 snapshot->gs = (uintptr_t) pipeline->shaders[MESA_SHADER_GEOMETRY];
187 snapshot->fs = (uintptr_t) pipeline->shaders[MESA_SHADER_FRAGMENT];
208 struct intel_measure_snapshot *snapshot = &(measure->base.snapshots[index]);
209 memset(snapshot, 0, sizeof(*snapshot));
210 snapshot->type = INTEL_SNAPSHOT_END;
211 snapshot->event_count = event_count;
476 /* snapshot for previous renderpass was not ended */
512 struct intel_measure_snapshot *snapshot = &(measure->base.snapshots[measure->base.index]);
515 snapshot->secondary = &secondary->measure->base;