Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/servers/rendering/rendering_device_driver.h
11352 views
1
/**************************************************************************/
2
/* rendering_device_driver.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
// ***********************************************************************************
34
// RenderingDeviceDriver - Design principles
35
// -----------------------------------------
36
// - Very little validation is done, and normally only in dev or debug builds.
37
// - Error reporting is generally simple: returning an id of 0 or a false boolean.
38
// - Certain enums/constants/structs follow Vulkan values/layout. That makes things easier for RDDVulkan (it asserts compatibility).
39
// - We allocate as little as possible in functions expected to be quick (a counterexample is loading/saving shaders) and use alloca() whenever suitable.
40
// - We try to back opaque ids with the native ones or memory addresses.
41
// - When using bookkeeping structures because the actual API id of a resource is not enough, we use a PagedAllocator.
42
// - Every struct has default initializers.
43
// - Using VectorView to take array-like arguments. Vector<uint8_t> is an exception (an indiom for "BLOB").
44
// - If a driver needs some higher-level information (the kind of info RenderingDevice keeps), it shall store a copy of what it needs.
45
// There's no backwards communication from the driver to query data from RenderingDevice.
46
// ***********************************************************************************
47
48
#include "core/object/object.h"
49
#include "core/variant/type_info.h"
50
#include "servers/rendering/rendering_context_driver.h"
51
#include "servers/rendering/rendering_device_commons.h"
52
53
class RenderingShaderContainer;
54
class RenderingShaderContainerFormat;
55
56
// These utilities help drivers avoid allocations.
57
#define ALLOCA(m_size) ((m_size != 0) ? alloca(m_size) : nullptr)
58
#define ALLOCA_ARRAY(m_type, m_count) ((m_type *)ALLOCA(sizeof(m_type) * (m_count)))
59
#define ALLOCA_SINGLE(m_type) ALLOCA_ARRAY(m_type, 1)
60
61
// This helps forwarding certain arrays to the API with confidence.
62
#define ARRAYS_COMPATIBLE(m_type_a, m_type_b) (sizeof(m_type_a) == sizeof(m_type_b) && alignof(m_type_a) == alignof(m_type_b))
63
// This is used when you also need to ensure structured types are compatible field-by-field.
64
// TODO: The fieldwise check is unimplemented, but still this one is useful, as a strong annotation about the needs.
65
#define ARRAYS_COMPATIBLE_FIELDWISE(m_type_a, m_type_b) ARRAYS_COMPATIBLE(m_type_a, m_type_b)
66
// Another utility, to make it easy to compare members of different enums, which is not fine with some compilers.
67
#define ENUM_MEMBERS_EQUAL(m_a, m_b) ((int64_t)m_a == (int64_t)m_b)
68
69
// This helps using a single paged allocator for many resource types.
70
template <typename... RESOURCE_TYPES>
71
struct VersatileResourceTemplate {
72
static constexpr size_t RESOURCE_SIZES[] = { sizeof(RESOURCE_TYPES)... };
73
static constexpr size_t MAX_RESOURCE_SIZE = std::max_element(RESOURCE_SIZES, RESOURCE_SIZES + sizeof...(RESOURCE_TYPES))[0];
74
uint8_t data[MAX_RESOURCE_SIZE];
75
76
template <typename T>
77
static T *allocate(PagedAllocator<VersatileResourceTemplate, true> &p_allocator) {
78
T *obj = (T *)p_allocator.alloc();
79
memnew_placement(obj, T);
80
return obj;
81
}
82
83
template <typename T>
84
static void free(PagedAllocator<VersatileResourceTemplate, true> &p_allocator, T *p_object) {
85
p_object->~T();
86
p_allocator.free((VersatileResourceTemplate *)p_object);
87
}
88
};
89
90
class RenderingDeviceDriver : public RenderingDeviceCommons {
91
GDSOFTCLASS(RenderingDeviceDriver, RenderingDeviceCommons);
92
93
public:
94
struct ID {
95
uint64_t id = 0;
96
_ALWAYS_INLINE_ ID() = default;
97
_ALWAYS_INLINE_ ID(uint64_t p_id) :
98
id(p_id) {}
99
};
100
101
#define DEFINE_ID(m_name) \
102
struct m_name##ID : public ID { \
103
_ALWAYS_INLINE_ explicit operator bool() const { \
104
return id != 0; \
105
} \
106
_ALWAYS_INLINE_ m_name##ID &operator=(m_name##ID p_other) { \
107
id = p_other.id; \
108
return *this; \
109
} \
110
_ALWAYS_INLINE_ bool operator<(const m_name##ID &p_other) const { \
111
return id < p_other.id; \
112
} \
113
_ALWAYS_INLINE_ bool operator==(const m_name##ID &p_other) const { \
114
return id == p_other.id; \
115
} \
116
_ALWAYS_INLINE_ bool operator!=(const m_name##ID &p_other) const { \
117
return id != p_other.id; \
118
} \
119
_ALWAYS_INLINE_ m_name##ID(const m_name##ID &p_other) : ID(p_other.id) {} \
120
_ALWAYS_INLINE_ explicit m_name##ID(uint64_t p_int) : ID(p_int) {} \
121
_ALWAYS_INLINE_ explicit m_name##ID(void *p_ptr) : ID((uint64_t)p_ptr) {} \
122
_ALWAYS_INLINE_ m_name##ID() = default; \
123
};
124
125
// Id types declared before anything else to prevent cyclic dependencies between the different concerns.
126
DEFINE_ID(Buffer);
127
DEFINE_ID(Texture);
128
DEFINE_ID(Sampler);
129
DEFINE_ID(VertexFormat);
130
DEFINE_ID(CommandQueue);
131
DEFINE_ID(CommandQueueFamily);
132
DEFINE_ID(CommandPool);
133
DEFINE_ID(CommandBuffer);
134
DEFINE_ID(SwapChain);
135
DEFINE_ID(Framebuffer);
136
DEFINE_ID(Shader);
137
DEFINE_ID(UniformSet);
138
DEFINE_ID(Pipeline);
139
DEFINE_ID(RenderPass);
140
DEFINE_ID(QueryPool);
141
DEFINE_ID(Fence);
142
DEFINE_ID(Semaphore);
143
144
public:
145
/*****************/
146
/**** GENERIC ****/
147
/*****************/
148
149
virtual Error initialize(uint32_t p_device_index, uint32_t p_frame_count) = 0;
150
151
/****************/
152
/**** MEMORY ****/
153
/****************/
154
155
enum MemoryAllocationType {
156
MEMORY_ALLOCATION_TYPE_CPU, // For images, CPU allocation also means linear, GPU is tiling optimal.
157
MEMORY_ALLOCATION_TYPE_GPU,
158
};
159
160
/*****************/
161
/**** BUFFERS ****/
162
/*****************/
163
164
enum BufferUsageBits {
165
BUFFER_USAGE_TRANSFER_FROM_BIT = (1 << 0),
166
BUFFER_USAGE_TRANSFER_TO_BIT = (1 << 1),
167
BUFFER_USAGE_TEXEL_BIT = (1 << 2),
168
BUFFER_USAGE_UNIFORM_BIT = (1 << 4),
169
BUFFER_USAGE_STORAGE_BIT = (1 << 5),
170
BUFFER_USAGE_INDEX_BIT = (1 << 6),
171
BUFFER_USAGE_VERTEX_BIT = (1 << 7),
172
BUFFER_USAGE_INDIRECT_BIT = (1 << 8),
173
BUFFER_USAGE_DEVICE_ADDRESS_BIT = (1 << 17),
174
};
175
176
enum {
177
BUFFER_WHOLE_SIZE = ~0ULL
178
};
179
180
virtual BufferID buffer_create(uint64_t p_size, BitField<BufferUsageBits> p_usage, MemoryAllocationType p_allocation_type) = 0;
181
// Only for a buffer with BUFFER_USAGE_TEXEL_BIT.
182
virtual bool buffer_set_texel_format(BufferID p_buffer, DataFormat p_format) = 0;
183
virtual void buffer_free(BufferID p_buffer) = 0;
184
virtual uint64_t buffer_get_allocation_size(BufferID p_buffer) = 0;
185
virtual uint8_t *buffer_map(BufferID p_buffer) = 0;
186
virtual void buffer_unmap(BufferID p_buffer) = 0;
187
// Only for a buffer with BUFFER_USAGE_DEVICE_ADDRESS_BIT.
188
virtual uint64_t buffer_get_device_address(BufferID p_buffer) = 0;
189
190
/*****************/
191
/**** TEXTURE ****/
192
/*****************/
193
194
struct TextureView {
195
DataFormat format = DATA_FORMAT_MAX;
196
TextureSwizzle swizzle_r = TEXTURE_SWIZZLE_R;
197
TextureSwizzle swizzle_g = TEXTURE_SWIZZLE_G;
198
TextureSwizzle swizzle_b = TEXTURE_SWIZZLE_B;
199
TextureSwizzle swizzle_a = TEXTURE_SWIZZLE_A;
200
};
201
202
enum TextureLayout {
203
TEXTURE_LAYOUT_UNDEFINED,
204
TEXTURE_LAYOUT_GENERAL,
205
TEXTURE_LAYOUT_STORAGE_OPTIMAL,
206
TEXTURE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL,
207
TEXTURE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL,
208
TEXTURE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL,
209
TEXTURE_LAYOUT_SHADER_READ_ONLY_OPTIMAL,
210
TEXTURE_LAYOUT_COPY_SRC_OPTIMAL,
211
TEXTURE_LAYOUT_COPY_DST_OPTIMAL,
212
TEXTURE_LAYOUT_RESOLVE_SRC_OPTIMAL,
213
TEXTURE_LAYOUT_RESOLVE_DST_OPTIMAL,
214
TEXTURE_LAYOUT_FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL,
215
TEXTURE_LAYOUT_FRAGMENT_DENSITY_MAP_ATTACHMENT_OPTIMAL,
216
TEXTURE_LAYOUT_MAX
217
};
218
219
enum TextureAspect {
220
TEXTURE_ASPECT_COLOR = 0,
221
TEXTURE_ASPECT_DEPTH = 1,
222
TEXTURE_ASPECT_STENCIL = 2,
223
TEXTURE_ASPECT_MAX
224
};
225
226
enum TextureUsageMethod {
227
TEXTURE_USAGE_VRS_FRAGMENT_SHADING_RATE_BIT = TEXTURE_USAGE_MAX_BIT << 1,
228
TEXTURE_USAGE_VRS_FRAGMENT_DENSITY_MAP_BIT = TEXTURE_USAGE_MAX_BIT << 2,
229
};
230
231
enum TextureAspectBits {
232
TEXTURE_ASPECT_COLOR_BIT = (1 << TEXTURE_ASPECT_COLOR),
233
TEXTURE_ASPECT_DEPTH_BIT = (1 << TEXTURE_ASPECT_DEPTH),
234
TEXTURE_ASPECT_STENCIL_BIT = (1 << TEXTURE_ASPECT_STENCIL),
235
};
236
237
struct TextureSubresource {
238
TextureAspect aspect = TEXTURE_ASPECT_COLOR;
239
uint32_t layer = 0;
240
uint32_t mipmap = 0;
241
};
242
243
struct TextureSubresourceLayers {
244
BitField<TextureAspectBits> aspect = {};
245
uint32_t mipmap = 0;
246
uint32_t base_layer = 0;
247
uint32_t layer_count = 0;
248
};
249
250
struct TextureSubresourceRange {
251
BitField<TextureAspectBits> aspect = {};
252
uint32_t base_mipmap = 0;
253
uint32_t mipmap_count = 0;
254
uint32_t base_layer = 0;
255
uint32_t layer_count = 0;
256
};
257
258
struct TextureCopyableLayout {
259
uint64_t offset = 0;
260
uint64_t size = 0;
261
uint64_t row_pitch = 0;
262
uint64_t depth_pitch = 0;
263
uint64_t layer_pitch = 0;
264
};
265
266
virtual TextureID texture_create(const TextureFormat &p_format, const TextureView &p_view) = 0;
267
virtual TextureID texture_create_from_extension(uint64_t p_native_texture, TextureType p_type, DataFormat p_format, uint32_t p_array_layers, bool p_depth_stencil, uint32_t p_mipmaps) = 0;
268
// texture_create_shared_*() can only use original, non-view textures as original. RenderingDevice is responsible for ensuring that.
269
virtual TextureID texture_create_shared(TextureID p_original_texture, const TextureView &p_view) = 0;
270
virtual TextureID texture_create_shared_from_slice(TextureID p_original_texture, const TextureView &p_view, TextureSliceType p_slice_type, uint32_t p_layer, uint32_t p_layers, uint32_t p_mipmap, uint32_t p_mipmaps) = 0;
271
virtual void texture_free(TextureID p_texture) = 0;
272
virtual uint64_t texture_get_allocation_size(TextureID p_texture) = 0;
273
virtual void texture_get_copyable_layout(TextureID p_texture, const TextureSubresource &p_subresource, TextureCopyableLayout *r_layout) = 0;
274
virtual uint8_t *texture_map(TextureID p_texture, const TextureSubresource &p_subresource) = 0;
275
virtual void texture_unmap(TextureID p_texture) = 0;
276
virtual BitField<TextureUsageBits> texture_get_usages_supported_by_format(DataFormat p_format, bool p_cpu_readable) = 0;
277
virtual bool texture_can_make_shared_with_format(TextureID p_texture, DataFormat p_format, bool &r_raw_reinterpretation) = 0;
278
279
/*****************/
280
/**** SAMPLER ****/
281
/*****************/
282
283
virtual SamplerID sampler_create(const SamplerState &p_state) = 0;
284
virtual void sampler_free(SamplerID p_sampler) = 0;
285
virtual bool sampler_is_format_supported_for_filter(DataFormat p_format, SamplerFilter p_filter) = 0;
286
287
/**********************/
288
/**** VERTEX ARRAY ****/
289
/**********************/
290
291
virtual VertexFormatID vertex_format_create(VectorView<VertexAttribute> p_vertex_attribs) = 0;
292
virtual void vertex_format_free(VertexFormatID p_vertex_format) = 0;
293
294
/******************/
295
/**** BARRIERS ****/
296
/******************/
297
298
enum PipelineStageBits {
299
PIPELINE_STAGE_TOP_OF_PIPE_BIT = (1 << 0),
300
PIPELINE_STAGE_DRAW_INDIRECT_BIT = (1 << 1),
301
PIPELINE_STAGE_VERTEX_INPUT_BIT = (1 << 2),
302
PIPELINE_STAGE_VERTEX_SHADER_BIT = (1 << 3),
303
PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT = (1 << 4),
304
PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT = (1 << 5),
305
PIPELINE_STAGE_GEOMETRY_SHADER_BIT = (1 << 6),
306
PIPELINE_STAGE_FRAGMENT_SHADER_BIT = (1 << 7),
307
PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT = (1 << 8),
308
PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT = (1 << 9),
309
PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT = (1 << 10),
310
PIPELINE_STAGE_COMPUTE_SHADER_BIT = (1 << 11),
311
PIPELINE_STAGE_COPY_BIT = (1 << 12),
312
PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT = (1 << 13),
313
PIPELINE_STAGE_RESOLVE_BIT = (1 << 14),
314
PIPELINE_STAGE_ALL_GRAPHICS_BIT = (1 << 15),
315
PIPELINE_STAGE_ALL_COMMANDS_BIT = (1 << 16),
316
PIPELINE_STAGE_CLEAR_STORAGE_BIT = (1 << 17),
317
PIPELINE_STAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT = (1 << 22),
318
PIPELINE_STAGE_FRAGMENT_DENSITY_PROCESS_BIT = (1 << 23),
319
};
320
321
enum BarrierAccessBits {
322
BARRIER_ACCESS_INDIRECT_COMMAND_READ_BIT = (1 << 0),
323
BARRIER_ACCESS_INDEX_READ_BIT = (1 << 1),
324
BARRIER_ACCESS_VERTEX_ATTRIBUTE_READ_BIT = (1 << 2),
325
BARRIER_ACCESS_UNIFORM_READ_BIT = (1 << 3),
326
BARRIER_ACCESS_INPUT_ATTACHMENT_READ_BIT = (1 << 4),
327
BARRIER_ACCESS_SHADER_READ_BIT = (1 << 5),
328
BARRIER_ACCESS_SHADER_WRITE_BIT = (1 << 6),
329
BARRIER_ACCESS_COLOR_ATTACHMENT_READ_BIT = (1 << 7),
330
BARRIER_ACCESS_COLOR_ATTACHMENT_WRITE_BIT = (1 << 8),
331
BARRIER_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT = (1 << 9),
332
BARRIER_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT = (1 << 10),
333
BARRIER_ACCESS_COPY_READ_BIT = (1 << 11),
334
BARRIER_ACCESS_COPY_WRITE_BIT = (1 << 12),
335
BARRIER_ACCESS_HOST_READ_BIT = (1 << 13),
336
BARRIER_ACCESS_HOST_WRITE_BIT = (1 << 14),
337
BARRIER_ACCESS_MEMORY_READ_BIT = (1 << 15),
338
BARRIER_ACCESS_MEMORY_WRITE_BIT = (1 << 16),
339
BARRIER_ACCESS_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT = (1 << 23),
340
BARRIER_ACCESS_FRAGMENT_DENSITY_MAP_ATTACHMENT_READ_BIT = (1 << 24),
341
BARRIER_ACCESS_RESOLVE_READ_BIT = (1 << 25),
342
BARRIER_ACCESS_RESOLVE_WRITE_BIT = (1 << 26),
343
BARRIER_ACCESS_STORAGE_CLEAR_BIT = (1 << 27),
344
};
345
346
// https://github.com/godotengine/godot/pull/110360 - "MemoryBarrier" conflicts with Windows header defines
347
struct MemoryAccessBarrier {
348
BitField<BarrierAccessBits> src_access = {};
349
BitField<BarrierAccessBits> dst_access = {};
350
};
351
352
struct BufferBarrier {
353
BufferID buffer;
354
BitField<BarrierAccessBits> src_access = {};
355
BitField<BarrierAccessBits> dst_access = {};
356
uint64_t offset = 0;
357
uint64_t size = 0;
358
};
359
360
struct TextureBarrier {
361
TextureID texture;
362
BitField<BarrierAccessBits> src_access = {};
363
BitField<BarrierAccessBits> dst_access = {};
364
TextureLayout prev_layout = TEXTURE_LAYOUT_UNDEFINED;
365
TextureLayout next_layout = TEXTURE_LAYOUT_UNDEFINED;
366
TextureSubresourceRange subresources;
367
};
368
369
virtual void command_pipeline_barrier(
370
CommandBufferID p_cmd_buffer,
371
BitField<PipelineStageBits> p_src_stages,
372
BitField<PipelineStageBits> p_dst_stages,
373
VectorView<MemoryAccessBarrier> p_memory_barriers,
374
VectorView<BufferBarrier> p_buffer_barriers,
375
VectorView<TextureBarrier> p_texture_barriers) = 0;
376
377
/****************/
378
/**** FENCES ****/
379
/****************/
380
381
virtual FenceID fence_create() = 0;
382
virtual Error fence_wait(FenceID p_fence) = 0;
383
virtual void fence_free(FenceID p_fence) = 0;
384
385
/********************/
386
/**** SEMAPHORES ****/
387
/********************/
388
389
virtual SemaphoreID semaphore_create() = 0;
390
virtual void semaphore_free(SemaphoreID p_semaphore) = 0;
391
392
/*************************/
393
/**** COMMAND BUFFERS ****/
394
/*************************/
395
396
// ----- QUEUE FAMILY -----
397
398
enum CommandQueueFamilyBits {
399
COMMAND_QUEUE_FAMILY_GRAPHICS_BIT = 0x1,
400
COMMAND_QUEUE_FAMILY_COMPUTE_BIT = 0x2,
401
COMMAND_QUEUE_FAMILY_TRANSFER_BIT = 0x4
402
};
403
404
// The requested command queue family must support all specified bits or it'll fail to return a valid family otherwise. If a valid surface is specified, the queue must support presenting to it.
405
// It is valid to specify no bits and a valid surface: in this case, the dedicated presentation queue family will be the preferred option.
406
virtual CommandQueueFamilyID command_queue_family_get(BitField<CommandQueueFamilyBits> p_cmd_queue_family_bits, RenderingContextDriver::SurfaceID p_surface = 0) = 0;
407
408
// ----- QUEUE -----
409
410
virtual CommandQueueID command_queue_create(CommandQueueFamilyID p_cmd_queue_family, bool p_identify_as_main_queue = false) = 0;
411
virtual Error command_queue_execute_and_present(CommandQueueID p_cmd_queue, VectorView<SemaphoreID> p_wait_semaphores, VectorView<CommandBufferID> p_cmd_buffers, VectorView<SemaphoreID> p_cmd_semaphores, FenceID p_cmd_fence, VectorView<SwapChainID> p_swap_chains) = 0;
412
virtual void command_queue_free(CommandQueueID p_cmd_queue) = 0;
413
414
// ----- POOL -----
415
416
enum CommandBufferType {
417
COMMAND_BUFFER_TYPE_PRIMARY,
418
COMMAND_BUFFER_TYPE_SECONDARY,
419
};
420
421
virtual CommandPoolID command_pool_create(CommandQueueFamilyID p_cmd_queue_family, CommandBufferType p_cmd_buffer_type) = 0;
422
virtual bool command_pool_reset(CommandPoolID p_cmd_pool) = 0;
423
virtual void command_pool_free(CommandPoolID p_cmd_pool) = 0;
424
425
// ----- BUFFER -----
426
427
virtual CommandBufferID command_buffer_create(CommandPoolID p_cmd_pool) = 0;
428
virtual bool command_buffer_begin(CommandBufferID p_cmd_buffer) = 0;
429
virtual bool command_buffer_begin_secondary(CommandBufferID p_cmd_buffer, RenderPassID p_render_pass, uint32_t p_subpass, FramebufferID p_framebuffer) = 0;
430
virtual void command_buffer_end(CommandBufferID p_cmd_buffer) = 0;
431
virtual void command_buffer_execute_secondary(CommandBufferID p_cmd_buffer, VectorView<CommandBufferID> p_secondary_cmd_buffers) = 0;
432
433
/********************/
434
/**** SWAP CHAIN ****/
435
/********************/
436
437
// The swap chain won't be valid for use until it is resized at least once.
438
virtual SwapChainID swap_chain_create(RenderingContextDriver::SurfaceID p_surface) = 0;
439
440
// The swap chain must not be in use when a resize is requested. Wait until all rendering associated to the swap chain is finished before resizing it.
441
virtual Error swap_chain_resize(CommandQueueID p_cmd_queue, SwapChainID p_swap_chain, uint32_t p_desired_framebuffer_count) = 0;
442
443
// Acquire the framebuffer that can be used for drawing. This must be called only once every time a new frame will be rendered.
444
virtual FramebufferID swap_chain_acquire_framebuffer(CommandQueueID p_cmd_queue, SwapChainID p_swap_chain, bool &r_resize_required) = 0;
445
446
// Retrieve the render pass that can be used to draw on the swap chain's framebuffers.
447
virtual RenderPassID swap_chain_get_render_pass(SwapChainID p_swap_chain) = 0;
448
449
// Retrieve the rotation in degrees to apply as a pre-transform. Usually 0 on PC. May be 0, 90, 180 & 270 on Android.
450
virtual int swap_chain_get_pre_rotation_degrees(SwapChainID p_swap_chain) { return 0; }
451
452
// Retrieve the format used by the swap chain's framebuffers.
453
virtual DataFormat swap_chain_get_format(SwapChainID p_swap_chain) = 0;
454
455
// Tells the swapchain the max_fps so it can use the proper frame pacing.
456
// Android uses this with Swappy library. Some implementations or platforms may ignore this hint.
457
virtual void swap_chain_set_max_fps(SwapChainID p_swap_chain, int p_max_fps) {}
458
459
// Wait until all rendering associated to the swap chain is finished before deleting it.
460
virtual void swap_chain_free(SwapChainID p_swap_chain) = 0;
461
462
/*********************/
463
/**** FRAMEBUFFER ****/
464
/*********************/
465
466
virtual FramebufferID framebuffer_create(RenderPassID p_render_pass, VectorView<TextureID> p_attachments, uint32_t p_width, uint32_t p_height) = 0;
467
virtual void framebuffer_free(FramebufferID p_framebuffer) = 0;
468
469
/****************/
470
/**** SHADER ****/
471
/****************/
472
473
struct ImmutableSampler {
474
UniformType type = UNIFORM_TYPE_MAX;
475
uint32_t binding = 0xffffffff; // Binding index as specified in shader.
476
LocalVector<ID> ids;
477
};
478
479
// Creates a Pipeline State Object (PSO) out of the shader and all the input data it needs.
480
// Immutable samplers can be embedded when creating the pipeline layout on the condition they remain valid and unchanged, so they don't need to be
481
// specified when creating uniform sets PSO resource for binding.
482
virtual ShaderID shader_create_from_container(const Ref<RenderingShaderContainer> &p_shader_container, const Vector<ImmutableSampler> &p_immutable_samplers) = 0;
483
// Only meaningful if API_TRAIT_SHADER_CHANGE_INVALIDATION is SHADER_CHANGE_INVALIDATION_ALL_OR_NONE_ACCORDING_TO_LAYOUT_HASH.
484
virtual uint32_t shader_get_layout_hash(ShaderID p_shader) { return 0; }
485
virtual void shader_free(ShaderID p_shader) = 0;
486
virtual void shader_destroy_modules(ShaderID p_shader) = 0;
487
488
public:
489
/*********************/
490
/**** UNIFORM SET ****/
491
/*********************/
492
493
struct BoundUniform {
494
UniformType type = UNIFORM_TYPE_MAX;
495
uint32_t binding = 0xffffffff; // Binding index as specified in shader.
496
LocalVector<ID> ids;
497
// Flag to indicate that this is an immutable sampler so it is skipped when creating uniform
498
// sets, as it would be set previously when creating the pipeline layout.
499
bool immutable_sampler = false;
500
};
501
502
virtual UniformSetID uniform_set_create(VectorView<BoundUniform> p_uniforms, ShaderID p_shader, uint32_t p_set_index, int p_linear_pool_index) = 0;
503
virtual void linear_uniform_set_pools_reset(int p_linear_pool_index) {}
504
virtual void uniform_set_free(UniformSetID p_uniform_set) = 0;
505
virtual bool uniform_sets_have_linear_pools() const { return false; }
506
507
// ----- COMMANDS -----
508
509
virtual void command_uniform_set_prepare_for_use(CommandBufferID p_cmd_buffer, UniformSetID p_uniform_set, ShaderID p_shader, uint32_t p_set_index) = 0;
510
511
/******************/
512
/**** TRANSFER ****/
513
/******************/
514
515
struct BufferCopyRegion {
516
uint64_t src_offset = 0;
517
uint64_t dst_offset = 0;
518
uint64_t size = 0;
519
};
520
521
struct TextureCopyRegion {
522
TextureSubresourceLayers src_subresources;
523
Vector3i src_offset;
524
TextureSubresourceLayers dst_subresources;
525
Vector3i dst_offset;
526
Vector3i size;
527
};
528
529
struct BufferTextureCopyRegion {
530
uint64_t buffer_offset = 0;
531
TextureSubresourceLayers texture_subresources;
532
Vector3i texture_offset;
533
Vector3i texture_region_size;
534
};
535
536
virtual void command_clear_buffer(CommandBufferID p_cmd_buffer, BufferID p_buffer, uint64_t p_offset, uint64_t p_size) = 0;
537
virtual void command_copy_buffer(CommandBufferID p_cmd_buffer, BufferID p_src_buffer, BufferID p_dst_buffer, VectorView<BufferCopyRegion> p_regions) = 0;
538
539
virtual void command_copy_texture(CommandBufferID p_cmd_buffer, TextureID p_src_texture, TextureLayout p_src_texture_layout, TextureID p_dst_texture, TextureLayout p_dst_texture_layout, VectorView<TextureCopyRegion> p_regions) = 0;
540
virtual void command_resolve_texture(CommandBufferID p_cmd_buffer, TextureID p_src_texture, TextureLayout p_src_texture_layout, uint32_t p_src_layer, uint32_t p_src_mipmap, TextureID p_dst_texture, TextureLayout p_dst_texture_layout, uint32_t p_dst_layer, uint32_t p_dst_mipmap) = 0;
541
virtual void command_clear_color_texture(CommandBufferID p_cmd_buffer, TextureID p_texture, TextureLayout p_texture_layout, const Color &p_color, const TextureSubresourceRange &p_subresources) = 0;
542
543
virtual void command_copy_buffer_to_texture(CommandBufferID p_cmd_buffer, BufferID p_src_buffer, TextureID p_dst_texture, TextureLayout p_dst_texture_layout, VectorView<BufferTextureCopyRegion> p_regions) = 0;
544
virtual void command_copy_texture_to_buffer(CommandBufferID p_cmd_buffer, TextureID p_src_texture, TextureLayout p_src_texture_layout, BufferID p_dst_buffer, VectorView<BufferTextureCopyRegion> p_regions) = 0;
545
546
/******************/
547
/**** PIPELINE ****/
548
/******************/
549
550
virtual void pipeline_free(PipelineID p_pipeline) = 0;
551
552
// ----- BINDING -----
553
554
virtual void command_bind_push_constants(CommandBufferID p_cmd_buffer, ShaderID p_shader, uint32_t p_first_index, VectorView<uint32_t> p_data) = 0;
555
556
// ----- CACHE -----
557
558
virtual bool pipeline_cache_create(const Vector<uint8_t> &p_data) = 0;
559
virtual void pipeline_cache_free() = 0;
560
virtual size_t pipeline_cache_query_size() = 0;
561
virtual Vector<uint8_t> pipeline_cache_serialize() = 0;
562
563
/*******************/
564
/**** RENDERING ****/
565
/*******************/
566
567
// ----- SUBPASS -----
568
569
enum AttachmentLoadOp {
570
ATTACHMENT_LOAD_OP_LOAD = 0,
571
ATTACHMENT_LOAD_OP_CLEAR = 1,
572
ATTACHMENT_LOAD_OP_DONT_CARE = 2,
573
};
574
575
enum AttachmentStoreOp {
576
ATTACHMENT_STORE_OP_STORE = 0,
577
ATTACHMENT_STORE_OP_DONT_CARE = 1,
578
};
579
580
struct Attachment {
581
DataFormat format = DATA_FORMAT_MAX;
582
TextureSamples samples = TEXTURE_SAMPLES_MAX;
583
AttachmentLoadOp load_op = ATTACHMENT_LOAD_OP_DONT_CARE;
584
AttachmentStoreOp store_op = ATTACHMENT_STORE_OP_DONT_CARE;
585
AttachmentLoadOp stencil_load_op = ATTACHMENT_LOAD_OP_DONT_CARE;
586
AttachmentStoreOp stencil_store_op = ATTACHMENT_STORE_OP_DONT_CARE;
587
TextureLayout initial_layout = TEXTURE_LAYOUT_UNDEFINED;
588
TextureLayout final_layout = TEXTURE_LAYOUT_UNDEFINED;
589
};
590
591
struct AttachmentReference {
592
static constexpr uint32_t UNUSED = 0xffffffff;
593
uint32_t attachment = UNUSED;
594
TextureLayout layout = TEXTURE_LAYOUT_UNDEFINED;
595
BitField<TextureAspectBits> aspect = {};
596
};
597
598
struct Subpass {
599
LocalVector<AttachmentReference> input_references;
600
LocalVector<AttachmentReference> color_references;
601
AttachmentReference depth_stencil_reference;
602
LocalVector<AttachmentReference> resolve_references;
603
LocalVector<uint32_t> preserve_attachments;
604
AttachmentReference fragment_shading_rate_reference;
605
Size2i fragment_shading_rate_texel_size;
606
};
607
608
struct SubpassDependency {
609
uint32_t src_subpass = 0xffffffff;
610
uint32_t dst_subpass = 0xffffffff;
611
BitField<PipelineStageBits> src_stages = {};
612
BitField<PipelineStageBits> dst_stages = {};
613
BitField<BarrierAccessBits> src_access = {};
614
BitField<BarrierAccessBits> dst_access = {};
615
};
616
617
virtual RenderPassID render_pass_create(VectorView<Attachment> p_attachments, VectorView<Subpass> p_subpasses, VectorView<SubpassDependency> p_subpass_dependencies, uint32_t p_view_count, AttachmentReference p_fragment_density_map_attachment) = 0;
618
virtual void render_pass_free(RenderPassID p_render_pass) = 0;
619
620
// ----- COMMANDS -----
621
622
union RenderPassClearValue {
623
Color color = {};
624
struct {
625
float depth;
626
uint32_t stencil;
627
};
628
629
RenderPassClearValue() {}
630
};
631
632
struct AttachmentClear {
633
BitField<TextureAspectBits> aspect = {};
634
uint32_t color_attachment = 0xffffffff;
635
RenderPassClearValue value;
636
};
637
638
virtual void command_begin_render_pass(CommandBufferID p_cmd_buffer, RenderPassID p_render_pass, FramebufferID p_framebuffer, CommandBufferType p_cmd_buffer_type, const Rect2i &p_rect, VectorView<RenderPassClearValue> p_clear_values) = 0;
639
virtual void command_end_render_pass(CommandBufferID p_cmd_buffer) = 0;
640
virtual void command_next_render_subpass(CommandBufferID p_cmd_buffer, CommandBufferType p_cmd_buffer_type) = 0;
641
virtual void command_render_set_viewport(CommandBufferID p_cmd_buffer, VectorView<Rect2i> p_viewports) = 0;
642
virtual void command_render_set_scissor(CommandBufferID p_cmd_buffer, VectorView<Rect2i> p_scissors) = 0;
643
virtual void command_render_clear_attachments(CommandBufferID p_cmd_buffer, VectorView<AttachmentClear> p_attachment_clears, VectorView<Rect2i> p_rects) = 0;
644
645
// Binding.
646
virtual void command_bind_render_pipeline(CommandBufferID p_cmd_buffer, PipelineID p_pipeline) = 0;
647
virtual void command_bind_render_uniform_set(CommandBufferID p_cmd_buffer, UniformSetID p_uniform_set, ShaderID p_shader, uint32_t p_set_index) = 0;
648
virtual void command_bind_render_uniform_sets(CommandBufferID p_cmd_buffer, VectorView<UniformSetID> p_uniform_sets, ShaderID p_shader, uint32_t p_first_set_index, uint32_t p_set_count) = 0;
649
650
// Drawing.
651
virtual void command_render_draw(CommandBufferID p_cmd_buffer, uint32_t p_vertex_count, uint32_t p_instance_count, uint32_t p_base_vertex, uint32_t p_first_instance) = 0;
652
virtual void command_render_draw_indexed(CommandBufferID p_cmd_buffer, uint32_t p_index_count, uint32_t p_instance_count, uint32_t p_first_index, int32_t p_vertex_offset, uint32_t p_first_instance) = 0;
653
virtual void command_render_draw_indexed_indirect(CommandBufferID p_cmd_buffer, BufferID p_indirect_buffer, uint64_t p_offset, uint32_t p_draw_count, uint32_t p_stride) = 0;
654
virtual void command_render_draw_indexed_indirect_count(CommandBufferID p_cmd_buffer, BufferID p_indirect_buffer, uint64_t p_offset, BufferID p_count_buffer, uint64_t p_count_buffer_offset, uint32_t p_max_draw_count, uint32_t p_stride) = 0;
655
virtual void command_render_draw_indirect(CommandBufferID p_cmd_buffer, BufferID p_indirect_buffer, uint64_t p_offset, uint32_t p_draw_count, uint32_t p_stride) = 0;
656
virtual void command_render_draw_indirect_count(CommandBufferID p_cmd_buffer, BufferID p_indirect_buffer, uint64_t p_offset, BufferID p_count_buffer, uint64_t p_count_buffer_offset, uint32_t p_max_draw_count, uint32_t p_stride) = 0;
657
658
// Buffer binding.
659
virtual void command_render_bind_vertex_buffers(CommandBufferID p_cmd_buffer, uint32_t p_binding_count, const BufferID *p_buffers, const uint64_t *p_offsets) = 0;
660
virtual void command_render_bind_index_buffer(CommandBufferID p_cmd_buffer, BufferID p_buffer, IndexBufferFormat p_format, uint64_t p_offset) = 0;
661
662
// Dynamic state.
663
virtual void command_render_set_blend_constants(CommandBufferID p_cmd_buffer, const Color &p_constants) = 0;
664
virtual void command_render_set_line_width(CommandBufferID p_cmd_buffer, float p_width) = 0;
665
666
// ----- PIPELINE -----
667
668
virtual PipelineID render_pipeline_create(
669
ShaderID p_shader,
670
VertexFormatID p_vertex_format,
671
RenderPrimitive p_render_primitive,
672
PipelineRasterizationState p_rasterization_state,
673
PipelineMultisampleState p_multisample_state,
674
PipelineDepthStencilState p_depth_stencil_state,
675
PipelineColorBlendState p_blend_state,
676
VectorView<int32_t> p_color_attachments,
677
BitField<PipelineDynamicStateFlags> p_dynamic_state,
678
RenderPassID p_render_pass,
679
uint32_t p_render_subpass,
680
VectorView<PipelineSpecializationConstant> p_specialization_constants) = 0;
681
682
/*****************/
683
/**** COMPUTE ****/
684
/*****************/
685
686
// ----- COMMANDS -----
687
688
// Binding.
689
virtual void command_bind_compute_pipeline(CommandBufferID p_cmd_buffer, PipelineID p_pipeline) = 0;
690
virtual void command_bind_compute_uniform_set(CommandBufferID p_cmd_buffer, UniformSetID p_uniform_set, ShaderID p_shader, uint32_t p_set_index) = 0;
691
virtual void command_bind_compute_uniform_sets(CommandBufferID p_cmd_buffer, VectorView<UniformSetID> p_uniform_sets, ShaderID p_shader, uint32_t p_first_set_index, uint32_t p_set_count) = 0;
692
693
// Dispatching.
694
virtual void command_compute_dispatch(CommandBufferID p_cmd_buffer, uint32_t p_x_groups, uint32_t p_y_groups, uint32_t p_z_groups) = 0;
695
virtual void command_compute_dispatch_indirect(CommandBufferID p_cmd_buffer, BufferID p_indirect_buffer, uint64_t p_offset) = 0;
696
697
// ----- PIPELINE -----
698
699
virtual PipelineID compute_pipeline_create(ShaderID p_shader, VectorView<PipelineSpecializationConstant> p_specialization_constants) = 0;
700
701
/******************/
702
/**** CALLBACK ****/
703
/******************/
704
705
typedef void (*DriverCallback)(RenderingDeviceDriver *p_driver, CommandBufferID p_command_buffer, void *p_userdata);
706
707
/*****************/
708
/**** QUERIES ****/
709
/*****************/
710
711
// ----- TIMESTAMP -----
712
713
// Basic.
714
virtual QueryPoolID timestamp_query_pool_create(uint32_t p_query_count) = 0;
715
virtual void timestamp_query_pool_free(QueryPoolID p_pool_id) = 0;
716
virtual void timestamp_query_pool_get_results(QueryPoolID p_pool_id, uint32_t p_query_count, uint64_t *r_results) = 0;
717
virtual uint64_t timestamp_query_result_to_time(uint64_t p_result) = 0;
718
719
// Commands.
720
virtual void command_timestamp_query_pool_reset(CommandBufferID p_cmd_buffer, QueryPoolID p_pool_id, uint32_t p_query_count) = 0;
721
virtual void command_timestamp_write(CommandBufferID p_cmd_buffer, QueryPoolID p_pool_id, uint32_t p_index) = 0;
722
723
/****************/
724
/**** LABELS ****/
725
/****************/
726
727
virtual void command_begin_label(CommandBufferID p_cmd_buffer, const char *p_label_name, const Color &p_color) = 0;
728
virtual void command_end_label(CommandBufferID p_cmd_buffer) = 0;
729
730
/****************/
731
/**** DEBUG *****/
732
/****************/
733
virtual void command_insert_breadcrumb(CommandBufferID p_cmd_buffer, uint32_t p_data) = 0;
734
735
/********************/
736
/**** SUBMISSION ****/
737
/********************/
738
739
virtual void begin_segment(uint32_t p_frame_index, uint32_t p_frames_drawn) = 0;
740
virtual void end_segment() = 0;
741
742
/**************/
743
/**** MISC ****/
744
/**************/
745
746
enum ObjectType {
747
OBJECT_TYPE_TEXTURE,
748
OBJECT_TYPE_SAMPLER,
749
OBJECT_TYPE_BUFFER,
750
OBJECT_TYPE_SHADER,
751
OBJECT_TYPE_UNIFORM_SET,
752
OBJECT_TYPE_PIPELINE,
753
};
754
755
struct MultiviewCapabilities {
756
bool is_supported = false;
757
bool geometry_shader_is_supported = false;
758
bool tessellation_shader_is_supported = false;
759
uint32_t max_view_count = 0;
760
uint32_t max_instance_count = 0;
761
};
762
763
struct FragmentShadingRateCapabilities {
764
Size2i min_texel_size;
765
Size2i max_texel_size;
766
Size2i max_fragment_size;
767
bool pipeline_supported = false;
768
bool primitive_supported = false;
769
bool attachment_supported = false;
770
};
771
772
struct FragmentDensityMapCapabilities {
773
Size2i min_texel_size;
774
Size2i max_texel_size;
775
Size2i offset_granularity;
776
bool attachment_supported = false;
777
bool dynamic_attachment_supported = false;
778
bool non_subsampled_images_supported = false;
779
bool invocations_supported = false;
780
bool offset_supported = false;
781
};
782
783
enum ApiTrait {
784
API_TRAIT_HONORS_PIPELINE_BARRIERS,
785
API_TRAIT_SHADER_CHANGE_INVALIDATION,
786
API_TRAIT_TEXTURE_TRANSFER_ALIGNMENT,
787
API_TRAIT_TEXTURE_DATA_ROW_PITCH_STEP,
788
API_TRAIT_SECONDARY_VIEWPORT_SCISSOR,
789
API_TRAIT_CLEARS_WITH_COPY_ENGINE,
790
API_TRAIT_USE_GENERAL_IN_COPY_QUEUES,
791
API_TRAIT_BUFFERS_REQUIRE_TRANSITIONS,
792
};
793
794
enum ShaderChangeInvalidation {
795
SHADER_CHANGE_INVALIDATION_ALL_BOUND_UNIFORM_SETS,
796
// What Vulkan does.
797
SHADER_CHANGE_INVALIDATION_INCOMPATIBLE_SETS_PLUS_CASCADE,
798
// What D3D12 does.
799
SHADER_CHANGE_INVALIDATION_ALL_OR_NONE_ACCORDING_TO_LAYOUT_HASH,
800
};
801
802
enum DeviceFamily {
803
DEVICE_UNKNOWN,
804
DEVICE_OPENGL,
805
DEVICE_VULKAN,
806
DEVICE_DIRECTX,
807
DEVICE_METAL,
808
};
809
810
struct Capabilities {
811
DeviceFamily device_family = DEVICE_UNKNOWN;
812
uint32_t version_major = 1;
813
uint32_t version_minor = 0;
814
};
815
816
virtual void set_object_name(ObjectType p_type, ID p_driver_id, const String &p_name) = 0;
817
virtual uint64_t get_resource_native_handle(DriverResource p_type, ID p_driver_id) = 0;
818
virtual uint64_t get_total_memory_used() = 0;
819
virtual uint64_t get_lazily_memory_used() = 0;
820
virtual uint64_t limit_get(Limit p_limit) = 0;
821
virtual uint64_t api_trait_get(ApiTrait p_trait);
822
virtual bool has_feature(Features p_feature) = 0;
823
virtual const MultiviewCapabilities &get_multiview_capabilities() = 0;
824
virtual const FragmentShadingRateCapabilities &get_fragment_shading_rate_capabilities() = 0;
825
virtual const FragmentDensityMapCapabilities &get_fragment_density_map_capabilities() = 0;
826
virtual String get_api_name() const = 0;
827
virtual String get_api_version() const = 0;
828
virtual String get_pipeline_cache_uuid() const = 0;
829
virtual const Capabilities &get_capabilities() const = 0;
830
virtual const RenderingShaderContainerFormat &get_shader_container_format() const = 0;
831
832
virtual bool is_composite_alpha_supported(CommandQueueID p_queue) const { return false; }
833
834
/******************/
835
836
virtual ~RenderingDeviceDriver();
837
};
838
839
using RDD = RenderingDeviceDriver;
840
841