summaryrefslogtreecommitdiff
path: root/include/libcamera
diff options
context:
space:
mode:
Diffstat (limited to 'include/libcamera')
-rw-r--r--include/libcamera/framebuffer.h4
-rw-r--r--include/libcamera/internal/framebuffer.h8
2 files changed, 12 insertions, 0 deletions
diff --git a/include/libcamera/framebuffer.h b/include/libcamera/framebuffer.h
index 502f7897..de172d97 100644
--- a/include/libcamera/framebuffer.h
+++ b/include/libcamera/framebuffer.h
@@ -9,6 +9,7 @@
#include <assert.h>
#include <limits>
+#include <memory>
#include <stdint.h>
#include <vector>
@@ -18,6 +19,7 @@
namespace libcamera {
+class Fence;
class Request;
struct FrameMetadata {
@@ -67,6 +69,8 @@ public:
unsigned int cookie() const { return cookie_; }
void setCookie(unsigned int cookie) { cookie_ = cookie; }
+ std::unique_ptr<Fence> releaseFence();
+
void cancel() { metadata_.status = FrameMetadata::FrameCancelled; }
private:
diff --git a/include/libcamera/internal/framebuffer.h b/include/libcamera/internal/framebuffer.h
index 6e0d8389..97dca963 100644
--- a/include/libcamera/internal/framebuffer.h
+++ b/include/libcamera/internal/framebuffer.h
@@ -7,8 +7,12 @@
#pragma once
+#include <memory>
+#include <utility>
+
#include <libcamera/base/class.h>
+#include <libcamera/fence.h>
#include <libcamera/framebuffer.h>
namespace libcamera {
@@ -24,7 +28,11 @@ public:
void setRequest(Request *request) { request_ = request; }
bool isContiguous() const { return isContiguous_; }
+ Fence *fence() const { return fence_.get(); }
+ void setFence(std::unique_ptr<Fence> fence) { fence_ = std::move(fence); }
+
private:
+ std::unique_ptr<Fence> fence_;
Request *request_;
bool isContiguous_;
};