Blender V5.0
vk_fence.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2022 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#pragma once
10
11#include "gpu_state_private.hh"
12
13#include "vk_common.hh"
14
15namespace blender::gpu {
16
17class VKFence : public Fence {
18 private:
19 TimelineValue timeline_value_;
20
21 public:
22 void signal() override;
23 void wait() override;
24};
25
26} // namespace blender::gpu
void signal() override
Definition vk_fence.cc:16
void wait() override
Definition vk_fence.cc:23
uint64_t TimelineValue
Definition vk_common.hh:36