Added ability to configure minimum uniform buffer size.

This commit is contained in:
Branimir Karadžić
2025-10-29 13:52:30 -07:00
committed by Бранимир Караџић
parent 71e0db9369
commit 16cf4f8683
13 changed files with 110 additions and 80 deletions

View File

@@ -1309,8 +1309,9 @@ pub const Caps = extern struct {
maxOcclusionQueries: u32,
maxEncoders: u32,
minResourceCbSize: u32,
transientVbSize: u32,
transientIbSize: u32,
maxTransientVbSize: u32,
matTansientIbSize: u32,
minUniformBufferSize: u32,
};
rendererType: RendererType,
@@ -1354,8 +1355,9 @@ pub const Init = extern struct {
pub const Limits = extern struct {
maxEncoders: u16,
minResourceCbSize: u32,
transientVbSize: u32,
transientIbSize: u32,
maxTransientVbSize: u32,
matTransientIbSize: u32,
minUniformBufferSize: u32,
};
type: RendererType,