/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2020, Google Inc. * * v4l2_camera_file.h - V4L2 compatibility camera file information */ #ifndef __V4L2_CAMERA_FILE_H__ #define __V4L2_CAMERA_FILE_H__ #include class V4L2CameraProxy; class V4L2CameraFile { public: V4L2CameraFile(int efd, bool nonBlocking, V4L2CameraProxy *proxy); ~V4L2CameraFile(); V4L2CameraProxy *proxy() const { return proxy_; } bool nonBlocking() const { return nonBlocking_; } int efd() const { return efd_; } enum v4l2_priority priority() const { return priority_; } void setPriority(enum v4l2_priority priority) { priority_ = priority; } private: V4L2CameraProxy *proxy_; bool nonBlocking_; int efd_; enum v4l2_priority priority_; }; #endif /* __V4L2_CAMERA_FILE_H__ */ /'>libcamera/pinchartl/libcamera.git
Laurent Pinchart's clone of libcameragit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/apps/qcam/assets/feathericons/list.svg
blob: 5ce38eaa9ce25e7e57b837e8b8d529265400f669 (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-list"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line></svg>