Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vk_drawlist.hh « vulkan « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4707bf4bb262295e3beb8f628ea08b5d59450449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2022 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup gpu
 */

#pragma once

#include "gpu_drawlist_private.hh"

namespace blender::gpu {

class VKDrawList : public DrawList {
 public:
  void append(GPUBatch *batch, int i_first, int i_count) override;
  void submit() override;
};

}  // namespace blender::gpu