Lines Matching refs:output_record

353     OutputRecord& output_record = output_buffer_map_[i];
354 DCHECK(!output_record.at_device);
355 DCHECK(!output_record.at_client);
356 DCHECK_EQ(output_record.egl_image, EGL_NO_IMAGE_KHR);
357 DCHECK_EQ(output_record.egl_sync, EGL_NO_SYNC_KHR);
358 DCHECK_EQ(output_record.picture_id, -1);
359 DCHECK_EQ(output_record.cleared, false);
376 output_record.egl_image = egl_image;
377 output_record.picture_id = buffers[i].id();
380 << "]: picture_id=" << output_record.picture_id;
1080 OutputRecord& output_record = output_buffer_map_[dqbuf.index];
1081 DCHECK(output_record.at_device);
1082 DCHECK(!output_record.at_client);
1083 DCHECK_NE(output_record.egl_image, EGL_NO_IMAGE_KHR);
1084 DCHECK_NE(output_record.picture_id, -1);
1085 output_record.at_device = false;
1091 output_record.at_client = true;
1093 << " as picture_id=" << output_record.picture_id;
1095 media::Picture(output_record.picture_id,
1099 PictureRecord(output_record.cleared, picture));
1101 output_record.cleared = true;
1144 OutputRecord& output_record = output_buffer_map_[buffer];
1145 DCHECK(!output_record.at_device);
1146 DCHECK(!output_record.at_client);
1147 DCHECK_NE(output_record.egl_image, EGL_NO_IMAGE_KHR);
1148 DCHECK_NE(output_record.picture_id, -1);
1149 if (output_record.egl_sync != EGL_NO_SYNC_KHR) {
1155 if (eglClientWaitSyncKHR(egl_display_, output_record.egl_sync, 0,
1160 if (eglDestroySyncKHR(egl_display_, output_record.egl_sync) != EGL_TRUE) {
1165 output_record.egl_sync = EGL_NO_SYNC_KHR;
1180 output_record.at_device = true;
1219 OutputRecord& output_record = output_buffer_map_[index];
1220 if (output_record.at_device || !output_record.at_client) {
1226 DCHECK_EQ(output_record.egl_sync, EGL_NO_SYNC_KHR);
1227 DCHECK(!output_record.at_device);
1228 output_record.at_client = false;
1229 output_record.egl_sync = egl_sync_ref->egl_sync;
1489 OutputRecord& output_record = output_buffer_map_[i];
1490 DCHECK(!(output_record.at_client && output_record.at_device));
1497 if (!output_record.at_client) {
1498 DCHECK_EQ(output_record.egl_sync, EGL_NO_SYNC_KHR);
1807 OutputRecord& output_record = output_buffer_map_[i];
1809 if (output_record.egl_image != EGL_NO_IMAGE_KHR) {
1810 if (device_->DestroyEGLImage(egl_display_, output_record.egl_image) !=
1817 if (output_record.egl_sync != EGL_NO_SYNC_KHR) {
1818 if (eglDestroySyncKHR(egl_display_, output_record.egl_sync) != EGL_TRUE) {
1825 << output_record.picture_id;
1829 &Client::DismissPictureBuffer, client_, output_record.picture_id));