Fixing some semaphore things
This commit is contained in:
+5
-5
@@ -120,10 +120,10 @@ int main() {
|
|||||||
// .filePath = sourcePath / "import/models/box.glb",
|
// .filePath = sourcePath / "import/models/box.glb",
|
||||||
// .importPath = "",
|
// .importPath = "",
|
||||||
//});
|
//});
|
||||||
//AssetImporter::importMesh(MeshImportArgs{
|
AssetImporter::importMesh(MeshImportArgs{
|
||||||
// .filePath = sourcePath / "import/models/rttest.glb",
|
.filePath = sourcePath / "import/models/rttest.glb",
|
||||||
// .importPath = "",
|
.importPath = "",
|
||||||
//});
|
});
|
||||||
//AssetImporter::importMesh(MeshImportArgs{
|
//AssetImporter::importMesh(MeshImportArgs{
|
||||||
// .filePath = sourcePath / "import/models/town_hall.glb",
|
// .filePath = sourcePath / "import/models/town_hall.glb",
|
||||||
// .importPath = "",
|
// .importPath = "",
|
||||||
@@ -157,7 +157,7 @@ int main() {
|
|||||||
// .fieldOfView = 0,
|
// .fieldOfView = 0,
|
||||||
// .numSamples = Gfx::SE_SAMPLE_COUNT_1_BIT,
|
// .numSamples = Gfx::SE_SAMPLE_COUNT_1_BIT,
|
||||||
// });
|
// });
|
||||||
|
//
|
||||||
window->show();
|
window->show();
|
||||||
while (windowManager->isActive() && getGlobals().running) {
|
while (windowManager->isActive() && getGlobals().running) {
|
||||||
windowManager->render();
|
windowManager->render();
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ UVector2 FontAsset::shapeText(std::string_view view, uint32 fontSize, Array<Rend
|
|||||||
void FontAsset::loadGlyphs(uint32 fontSize) {
|
void FontAsset::loadGlyphs(uint32 fontSize) {
|
||||||
FT_Set_Pixel_Sizes(ft_face, 0, fontSize);
|
FT_Set_Pixel_Sizes(ft_face, 0, fontSize);
|
||||||
for (uint32 i = 0; i < ft_face->num_glyphs; ++i) {
|
for (uint32 i = 0; i < ft_face->num_glyphs; ++i) {
|
||||||
assert(FT_Load_Glyph(ft_face, i, FT_LOAD_RENDER | FT_LOAD_COLOR) == 0);
|
assert(FT_Load_Glyph(ft_face, i, FT_LOAD_RENDER) == 0);
|
||||||
FontAsset::Glyph& glyph = fontSizes[fontSize].glyphs[i];
|
FontAsset::Glyph& glyph = fontSizes[fontSize].glyphs[i];
|
||||||
glyph.size = IVector2(ft_face->glyph->bitmap.width, ft_face->glyph->bitmap.rows);
|
glyph.size = IVector2(ft_face->glyph->bitmap.width, ft_face->glyph->bitmap.rows);
|
||||||
glyph.bearing = IVector2(ft_face->glyph->bitmap_left, ft_face->glyph->bitmap_top);
|
glyph.bearing = IVector2(ft_face->glyph->bitmap_left, ft_face->glyph->bitmap_top);
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
#include "Graphics/Buffer.h"
|
#include "Graphics/Buffer.h"
|
||||||
#include "Graphics/Enums.h"
|
#include "Graphics/Enums.h"
|
||||||
#include "Graphics/Initializer.h"
|
#include "Graphics/Initializer.h"
|
||||||
#include "Metal/MTLResource.hpp"
|
|
||||||
#include "Metal/MTLTypes.hpp"
|
|
||||||
#include "MinimalEngine.h"
|
#include "MinimalEngine.h"
|
||||||
#include "Resources.h"
|
#include "Resources.h"
|
||||||
|
|
||||||
|
|||||||
@@ -28,8 +28,8 @@ class BasePass : public RenderPass {
|
|||||||
Gfx::PShaderBuffer tLightIndexList;
|
Gfx::PShaderBuffer tLightIndexList;
|
||||||
Gfx::PTexture2D oLightGrid;
|
Gfx::PTexture2D oLightGrid;
|
||||||
Gfx::PTexture2D tLightGrid;
|
Gfx::PTexture2D tLightGrid;
|
||||||
constexpr static std::string LIGHTINDEX_NAME = "lightIndexList";
|
constexpr static const char* LIGHTINDEX_NAME = "lightIndexList";
|
||||||
constexpr static std::string LIGHTGRID_NAME = "lightGrid";
|
constexpr static const char* LIGHTGRID_NAME = "lightGrid";
|
||||||
|
|
||||||
Gfx::PDescriptorSet opaqueCulling;
|
Gfx::PDescriptorSet opaqueCulling;
|
||||||
Gfx::PDescriptorSet transparentCulling;
|
Gfx::PDescriptorSet transparentCulling;
|
||||||
@@ -79,9 +79,9 @@ class BasePass : public RenderPass {
|
|||||||
float blendFactor;
|
float blendFactor;
|
||||||
} skyboxData;
|
} skyboxData;
|
||||||
Component::Skybox skybox;
|
Component::Skybox skybox;
|
||||||
constexpr static std::string SKYBOXDAY_NAME = "day";
|
const char* SKYBOXDAY_NAME = "day";
|
||||||
constexpr static std::string SKYBOXNIGHT_NAME = "night";
|
const char* SKYBOXNIGHT_NAME = "night";
|
||||||
constexpr static std::string SKYBOXSAMPLER_NAME = "sampler";
|
const char* SKYBOXSAMPLER_NAME = "sampler";
|
||||||
PScene scene;
|
PScene scene;
|
||||||
};
|
};
|
||||||
DEFINE_REF(BasePass)
|
DEFINE_REF(BasePass)
|
||||||
|
|||||||
@@ -29,9 +29,9 @@ class DepthCullingPass : public RenderPass {
|
|||||||
Array<uint32> mipOffsets;
|
Array<uint32> mipOffsets;
|
||||||
Array<UVector2> mipDims;
|
Array<UVector2> mipDims;
|
||||||
|
|
||||||
constexpr static std::string DEPTHTEXTURE_NAME = "depthTexture";
|
constexpr static const char* DEPTHTEXTURE_NAME = "depthTexture";
|
||||||
Gfx::OShaderBuffer depthMipBuffer;
|
Gfx::OShaderBuffer depthMipBuffer;
|
||||||
constexpr static std::string DEPTHMIP_NAME = "depthMip";
|
constexpr static const char* DEPTHMIP_NAME = "depthMip";
|
||||||
Gfx::RenderTargetAttachment depthAttachment;
|
Gfx::RenderTargetAttachment depthAttachment;
|
||||||
Gfx::RenderTargetAttachment visibilityAttachment;
|
Gfx::RenderTargetAttachment visibilityAttachment;
|
||||||
Gfx::ODescriptorLayout depthAttachmentLayout;
|
Gfx::ODescriptorLayout depthAttachmentLayout;
|
||||||
|
|||||||
@@ -6,8 +6,6 @@
|
|||||||
#include "Math/Vector.h"
|
#include "Math/Vector.h"
|
||||||
#include "RenderGraph.h"
|
#include "RenderGraph.h"
|
||||||
#include "Scene/Scene.h"
|
#include "Scene/Scene.h"
|
||||||
#include "Graphics/Metal/Descriptor.h"
|
|
||||||
#include "Graphics/Metal/Shader.h"
|
|
||||||
|
|
||||||
using namespace Seele;
|
using namespace Seele;
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class LightCullingPass : public RenderPass {
|
|||||||
static constexpr uint32 INDEX_LIGHT_ENV = 1;
|
static constexpr uint32 INDEX_LIGHT_ENV = 1;
|
||||||
|
|
||||||
Gfx::OShaderBuffer frustumBuffer;
|
Gfx::OShaderBuffer frustumBuffer;
|
||||||
constexpr static std::string FRUSTUMBUFFER_NAME = "frustums";
|
const char* FRUSTUMBUFFER_NAME = "frustums";
|
||||||
Gfx::ODescriptorLayout dispatchParamsLayout;
|
Gfx::ODescriptorLayout dispatchParamsLayout;
|
||||||
Gfx::PDescriptorSet dispatchParamsSet;
|
Gfx::PDescriptorSet dispatchParamsSet;
|
||||||
Gfx::OComputeShader frustumShader;
|
Gfx::OComputeShader frustumShader;
|
||||||
@@ -36,19 +36,19 @@ class LightCullingPass : public RenderPass {
|
|||||||
|
|
||||||
PLightEnvironment lightEnv;
|
PLightEnvironment lightEnv;
|
||||||
Gfx::PTexture2D depthAttachment;
|
Gfx::PTexture2D depthAttachment;
|
||||||
constexpr static std::string DEPTHATTACHMENT_NAME = "depth";
|
constexpr static const char* DEPTHATTACHMENT_NAME = "depth";
|
||||||
Gfx::OShaderBuffer oLightIndexCounter;
|
Gfx::OShaderBuffer oLightIndexCounter;
|
||||||
constexpr static std::string OLIGHTINDEXCOUNTER_NAME = "oLightIndexCounter";
|
constexpr static const char* OLIGHTINDEXCOUNTER_NAME = "oLightIndexCounter";
|
||||||
Gfx::OShaderBuffer tLightIndexCounter;
|
Gfx::OShaderBuffer tLightIndexCounter;
|
||||||
constexpr static std::string TLIGHTINDEXCOUNTER_NAME = "tLightIndexCounter";
|
constexpr static const char* TLIGHTINDEXCOUNTER_NAME = "tLightIndexCounter";
|
||||||
Gfx::OShaderBuffer oLightIndexList;
|
Gfx::OShaderBuffer oLightIndexList;
|
||||||
constexpr static std::string OLIGHTINDEXLIST_NAME = "oLightIndexList";
|
constexpr static const char* OLIGHTINDEXLIST_NAME = "oLightIndexList";
|
||||||
Gfx::OShaderBuffer tLightIndexList;
|
Gfx::OShaderBuffer tLightIndexList;
|
||||||
constexpr static std::string TLIGHTINDEXLIST_NAME = "tLightIndexList";
|
constexpr static const char* TLIGHTINDEXLIST_NAME = "tLightIndexList";
|
||||||
Gfx::OTexture2D oLightGrid;
|
Gfx::OTexture2D oLightGrid;
|
||||||
constexpr static std::string OLIGHTGRID_NAME = "oLightGrid";
|
constexpr static const char* OLIGHTGRID_NAME = "oLightGrid";
|
||||||
Gfx::OTexture2D tLightGrid;
|
Gfx::OTexture2D tLightGrid;
|
||||||
constexpr static std::string TLIGHTGRID_NAME = "tLightGrid";
|
constexpr static const char* TLIGHTGRID_NAME = "tLightGrid";
|
||||||
Gfx::PDescriptorSet cullingDescriptorSet;
|
Gfx::PDescriptorSet cullingDescriptorSet;
|
||||||
Gfx::ODescriptorLayout cullingDescriptorLayout;
|
Gfx::ODescriptorLayout cullingDescriptorLayout;
|
||||||
Gfx::OPipelineLayout cullingLayout;
|
Gfx::OPipelineLayout cullingLayout;
|
||||||
|
|||||||
@@ -16,30 +16,30 @@ struct SampleParams {
|
|||||||
|
|
||||||
RayTracingPass::RayTracingPass(Gfx::PGraphics graphics, PScene scene) : RenderPass(graphics), scene(scene) {
|
RayTracingPass::RayTracingPass(Gfx::PGraphics graphics, PScene scene) : RenderPass(graphics), scene(scene) {
|
||||||
paramsLayout = graphics->createDescriptorLayout("pRayTracingParams");
|
paramsLayout = graphics->createDescriptorLayout("pRayTracingParams");
|
||||||
/*paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.binding = 0,
|
.name = TLAS_NAME,
|
||||||
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR,
|
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR,
|
||||||
});
|
});
|
||||||
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.binding = 1,
|
.name = ACCUMULATOR_NAME,
|
||||||
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
||||||
});
|
});
|
||||||
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.binding = 2,
|
.name = TEXTURE_NAME,
|
||||||
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
||||||
});
|
});
|
||||||
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.binding = 3,
|
.name = INDEXBUFFER_NAME,
|
||||||
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_BUFFER,
|
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_BUFFER,
|
||||||
});
|
});
|
||||||
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.binding = 4,
|
.name = SKYBOX_NAME,
|
||||||
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_SAMPLED_IMAGE,
|
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_SAMPLED_IMAGE,
|
||||||
});
|
});
|
||||||
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
paramsLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.binding = 5,
|
.name = SKYSAMPLER_NAME,
|
||||||
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_SAMPLER,
|
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_SAMPLER,
|
||||||
});*/
|
});
|
||||||
paramsLayout->create();
|
paramsLayout->create();
|
||||||
pipelineLayout = graphics->createPipelineLayout("RayTracing");
|
pipelineLayout = graphics->createPipelineLayout("RayTracing");
|
||||||
pipelineLayout->addDescriptorLayout(viewParamsLayout);
|
pipelineLayout->addDescriptorLayout(viewParamsLayout);
|
||||||
@@ -137,12 +137,12 @@ void RayTracingPass::render() {
|
|||||||
.bottomLevelStructures = accelerationStructures,
|
.bottomLevelStructures = accelerationStructures,
|
||||||
});
|
});
|
||||||
Gfx::PDescriptorSet desc = paramsLayout->allocateDescriptorSet();
|
Gfx::PDescriptorSet desc = paramsLayout->allocateDescriptorSet();
|
||||||
/*desc->updateAccelerationStructure(0, 0, tlas);
|
desc->updateAccelerationStructure(TLAS_NAME, 0, tlas);
|
||||||
desc->updateTexture(1, 0, radianceAccumulator);
|
desc->updateTexture(ACCUMULATOR_NAME, 0, radianceAccumulator);
|
||||||
desc->updateTexture(2, 0, texture);
|
desc->updateTexture(TEXTURE_NAME, 0, texture);
|
||||||
desc->updateBuffer(3, 0, StaticMeshVertexData::getInstance()->getIndexBuffer());
|
desc->updateBuffer(INDEXBUFFER_NAME, 0, StaticMeshVertexData::getInstance()->getIndexBuffer());
|
||||||
desc->updateTexture(4, 0, skyBox);
|
desc->updateTexture(SKYBOX_NAME, 0, skyBox);
|
||||||
desc->updateSampler(5, 0, skyBoxSampler);*/
|
desc->updateSampler(SKYSAMPLER_NAME, 0, skyBoxSampler);
|
||||||
desc->writeChanges();
|
desc->writeChanges();
|
||||||
|
|
||||||
Gfx::ORenderCommand command = graphics->createRenderCommand("RayTracing");
|
Gfx::ORenderCommand command = graphics->createRenderCommand("RayTracing");
|
||||||
|
|||||||
@@ -17,15 +17,21 @@ class RayTracingPass : public RenderPass {
|
|||||||
private:
|
private:
|
||||||
Gfx::ODescriptorLayout paramsLayout;
|
Gfx::ODescriptorLayout paramsLayout;
|
||||||
Gfx::OPipelineLayout pipelineLayout;
|
Gfx::OPipelineLayout pipelineLayout;
|
||||||
|
constexpr static const char* TLAS_NAME = "scene";
|
||||||
|
Gfx::OTopLevelAS tlas;
|
||||||
|
constexpr static const char* ACCUMULATOR_NAME = "accumulator";
|
||||||
Gfx::OTexture2D radianceAccumulator;
|
Gfx::OTexture2D radianceAccumulator;
|
||||||
|
constexpr static const char* TEXTURE_NAME = "image";
|
||||||
Gfx::OTexture2D texture;
|
Gfx::OTexture2D texture;
|
||||||
|
constexpr static const char* SKYBOX_NAME = "skybox";
|
||||||
Gfx::PTextureCube skyBox;
|
Gfx::PTextureCube skyBox;
|
||||||
|
constexpr static const char* SKYSAMPLER_NAME = "sampler";
|
||||||
Gfx::OSampler skyBoxSampler;
|
Gfx::OSampler skyBoxSampler;
|
||||||
|
constexpr static const char* INDEXBUFFER_NAME = "indexBuffer";
|
||||||
Gfx::ORayGenShader rayGen;
|
Gfx::ORayGenShader rayGen;
|
||||||
Gfx::OAnyHitShader anyhit;
|
Gfx::OAnyHitShader anyhit;
|
||||||
Gfx::OMissShader miss;
|
Gfx::OMissShader miss;
|
||||||
Gfx::PRayTracingPipeline pipeline;
|
Gfx::PRayTracingPipeline pipeline;
|
||||||
Gfx::OTopLevelAS tlas;
|
|
||||||
PScene scene;
|
PScene scene;
|
||||||
};
|
};
|
||||||
} // namespace Seele
|
} // namespace Seele
|
||||||
@@ -32,7 +32,7 @@ UIPass::UIPass(Gfx::PGraphics graphics, UI::PSystem system) : RenderPass(graphic
|
|||||||
|
|
||||||
uiDescriptorLayout = graphics->createDescriptorLayout("pParams");
|
uiDescriptorLayout = graphics->createDescriptorLayout("pParams");
|
||||||
uiDescriptorLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
uiDescriptorLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.name = GLYPHINSTANCE_NAME,
|
.name = ELEMENT_NAME,
|
||||||
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_BUFFER,
|
.descriptorType = Gfx::SE_DESCRIPTOR_TYPE_STORAGE_BUFFER,
|
||||||
});
|
});
|
||||||
uiDescriptorLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
uiDescriptorLayout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
@@ -57,6 +57,7 @@ void UIPass::beginFrame(const Component::Camera& cam) {
|
|||||||
RenderPass::beginFrame(cam);
|
RenderPass::beginFrame(cam);
|
||||||
glyphs.clear();
|
glyphs.clear();
|
||||||
usedTextures.clear();
|
usedTextures.clear();
|
||||||
|
elements.clear();
|
||||||
for (auto& render : renderElements) {
|
for (auto& render : renderElements) {
|
||||||
float x = render.position.x;
|
float x = render.position.x;
|
||||||
float y = render.position.y;
|
float y = render.position.y;
|
||||||
@@ -112,9 +113,6 @@ void UIPass::render() {
|
|||||||
command->bindPipeline(uiPipeline);
|
command->bindPipeline(uiPipeline);
|
||||||
command->bindDescriptor({viewParamsSet, uiDescriptorSet});
|
command->bindDescriptor({viewParamsSet, uiDescriptorSet});
|
||||||
command->draw(4, elements.size(), 0, 0);
|
command->draw(4, elements.size(), 0, 0);
|
||||||
command->bindPipeline(textPipeline);
|
|
||||||
command->bindDescriptor({viewParamsSet, textDescriptorSet});
|
|
||||||
command->draw(4, glyphs.size(), 0, 0);
|
|
||||||
commands.add(std::move(command));
|
commands.add(std::move(command));
|
||||||
graphics->executeCommands(std::move(commands));
|
graphics->executeCommands(std::move(commands));
|
||||||
graphics->endRenderPass();
|
graphics->endRenderPass();
|
||||||
|
|||||||
@@ -72,13 +72,13 @@ class UIPass : public RenderPass {
|
|||||||
Array<GlyphInstanceData> glyphs;
|
Array<GlyphInstanceData> glyphs;
|
||||||
Array<RenderElementStyle> elements;
|
Array<RenderElementStyle> elements;
|
||||||
Gfx::OShaderBuffer glyphInstanceBuffer;
|
Gfx::OShaderBuffer glyphInstanceBuffer;
|
||||||
constexpr static std::string GLYPHINSTANCE_NAME = "glyphData";
|
constexpr static const char* GLYPHINSTANCE_NAME = "glyphData";
|
||||||
Gfx::OShaderBuffer elementBuffer;
|
Gfx::OShaderBuffer elementBuffer;
|
||||||
constexpr static std::string ELEMENT_NAME = "elements";
|
constexpr static const char* ELEMENT_NAME = "elements";
|
||||||
Gfx::OSampler glyphSampler;
|
Gfx::OSampler glyphSampler;
|
||||||
constexpr static std::string GLYPHSAMPLER_NAME = "glyphSampler";
|
constexpr static const char* GLYPHSAMPLER_NAME = "glyphSampler";
|
||||||
Array<Gfx::PTexture2D> usedTextures;
|
Array<Gfx::PTexture2D> usedTextures;
|
||||||
constexpr static std::string TEXTURES_NAME = "textures";
|
constexpr static const char* TEXTURES_NAME = "textures";
|
||||||
};
|
};
|
||||||
DEFINE_REF(UIPass);
|
DEFINE_REF(UIPass);
|
||||||
} // namespace Seele
|
} // namespace Seele
|
||||||
|
|||||||
@@ -27,10 +27,10 @@ class VisibilityPass : public RenderPass {
|
|||||||
Gfx::OPipelineStatisticsQuery query;
|
Gfx::OPipelineStatisticsQuery query;
|
||||||
Gfx::PTimestampQuery timestamps;
|
Gfx::PTimestampQuery timestamps;
|
||||||
|
|
||||||
constexpr static std::string VISIBILITY_NAME = "visibilityTexture";
|
constexpr static const char* VISIBILITY_NAME = "visibilityTexture";
|
||||||
// Holds culling information for every meshlet for each instance
|
// Holds culling information for every meshlet for each instance
|
||||||
Gfx::OShaderBuffer cullingBuffer;
|
Gfx::OShaderBuffer cullingBuffer;
|
||||||
constexpr static std::string CULLINGBUFFER_NAME = "cullingBuffer";
|
constexpr static const char* CULLINGBUFFER_NAME = "cullingBuffer";
|
||||||
UVector threadGroupSize;
|
UVector threadGroupSize;
|
||||||
};
|
};
|
||||||
DEFINE_REF(VisibilityPass)
|
DEFINE_REF(VisibilityPass)
|
||||||
|
|||||||
@@ -41,17 +41,17 @@ class StaticMeshVertexData : public VertexData {
|
|||||||
|
|
||||||
|
|
||||||
Gfx::OShaderBuffer positions;
|
Gfx::OShaderBuffer positions;
|
||||||
constexpr static std::string POSITIONS_NAME = "positions";
|
constexpr static const char* POSITIONS_NAME = "positions";
|
||||||
Gfx::OShaderBuffer texCoords[MAX_TEXCOORDS];
|
Gfx::OShaderBuffer texCoords[MAX_TEXCOORDS];
|
||||||
constexpr static std::string TEXCOORDS_NAME = "texCoords";
|
constexpr static const char* TEXCOORDS_NAME = "texCoords";
|
||||||
Gfx::OShaderBuffer normals;
|
Gfx::OShaderBuffer normals;
|
||||||
constexpr static std::string NORMALS_NAME = "normals";
|
constexpr static const char* NORMALS_NAME = "normals";
|
||||||
Gfx::OShaderBuffer tangents;
|
Gfx::OShaderBuffer tangents;
|
||||||
constexpr static std::string TANGENTS_NAME = "tangents";
|
constexpr static const char* TANGENTS_NAME = "tangents";
|
||||||
Gfx::OShaderBuffer biTangents;
|
Gfx::OShaderBuffer biTangents;
|
||||||
constexpr static std::string BITANGENTS_NAME = "biTangents";
|
constexpr static const char* BITANGENTS_NAME = "biTangents";
|
||||||
Gfx::OShaderBuffer colors;
|
Gfx::OShaderBuffer colors;
|
||||||
constexpr static std::string COLORS_NAME = "colors";
|
constexpr static const char* COLORS_NAME = "colors";
|
||||||
Array<PositionType> posData;
|
Array<PositionType> posData;
|
||||||
Array<TexCoordType> texData[MAX_TEXCOORDS];
|
Array<TexCoordType> texData[MAX_TEXCOORDS];
|
||||||
Array<NormalType> norData;
|
Array<NormalType> norData;
|
||||||
|
|||||||
@@ -128,27 +128,27 @@ class VertexData {
|
|||||||
Gfx::ODescriptorLayout instanceDataLayout;
|
Gfx::ODescriptorLayout instanceDataLayout;
|
||||||
// for mesh shading
|
// for mesh shading
|
||||||
Gfx::OShaderBuffer meshletBuffer;
|
Gfx::OShaderBuffer meshletBuffer;
|
||||||
constexpr static std::string MESHLET_NAME = "meshlets";
|
constexpr static const char* MESHLET_NAME = "meshlets";
|
||||||
Gfx::OShaderBuffer vertexIndicesBuffer;
|
Gfx::OShaderBuffer vertexIndicesBuffer;
|
||||||
constexpr static std::string VERTEXINDICES_NAME = "vertexIndices";
|
constexpr static const char* VERTEXINDICES_NAME = "vertexIndices";
|
||||||
Gfx::OShaderBuffer primitiveIndicesBuffer;
|
Gfx::OShaderBuffer primitiveIndicesBuffer;
|
||||||
constexpr static std::string PRIMITIVEINDICES_NAME = "primitiveIndices";
|
constexpr static const char* PRIMITIVEINDICES_NAME = "primitiveIndices";
|
||||||
Gfx::OShaderBuffer cullingOffsetBuffer;
|
Gfx::OShaderBuffer cullingOffsetBuffer;
|
||||||
constexpr static std::string CULLINGOFFSETS_NAME = "cullingOffsets";
|
constexpr static const char* CULLINGOFFSETS_NAME = "cullingOffsets";
|
||||||
constexpr static std::string CULLINGDATA_NAME = "cullingData";
|
constexpr static const char* CULLINGDATA_NAME = "cullingData";
|
||||||
|
|
||||||
// for legacy pipeline
|
// for legacy pipeline
|
||||||
Gfx::OIndexBuffer indexBuffer;
|
Gfx::OIndexBuffer indexBuffer;
|
||||||
constexpr static std::string INDEXBUFFER_NAME = "indexBuffer";
|
constexpr static const char* INDEXBUFFER_NAME = "indexBuffer";
|
||||||
Array<Gfx::PBottomLevelAS> dataToBuild;
|
Array<Gfx::PBottomLevelAS> dataToBuild;
|
||||||
// Material data
|
// Material data
|
||||||
Array<InstanceData> instanceData;
|
Array<InstanceData> instanceData;
|
||||||
Gfx::OShaderBuffer instanceBuffer;
|
Gfx::OShaderBuffer instanceBuffer;
|
||||||
constexpr static std::string INSTANCES_NAME = "instances";
|
constexpr static const char* INSTANCES_NAME = "instances";
|
||||||
|
|
||||||
Array<MeshData> instanceMeshData;
|
Array<MeshData> instanceMeshData;
|
||||||
Gfx::OShaderBuffer instanceMeshDataBuffer;
|
Gfx::OShaderBuffer instanceMeshDataBuffer;
|
||||||
constexpr static std::string MESHDATA_NAME = "meshData";
|
constexpr static const char* MESHDATA_NAME = "meshData";
|
||||||
|
|
||||||
Array<Gfx::PBottomLevelAS> rayTracingScene;
|
Array<Gfx::PBottomLevelAS> rayTracingScene;
|
||||||
|
|
||||||
|
|||||||
@@ -45,6 +45,7 @@ void Command::begin() {
|
|||||||
|
|
||||||
void Command::end() {
|
void Command::end() {
|
||||||
VK_CHECK(vkEndCommandBuffer(handle));
|
VK_CHECK(vkEndCommandBuffer(handle));
|
||||||
|
signalSemaphore->rotateSemaphore();
|
||||||
state = State::End;
|
state = State::End;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -111,15 +112,14 @@ void Command::executeCommands(Array<Gfx::OComputeCommand> commands) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Command::waitForSemaphore(VkPipelineStageFlags flags, PSemaphore semaphore) {
|
void Command::waitForSemaphore(VkPipelineStageFlags flags, PSemaphore semaphore) {
|
||||||
|
bindResource(semaphore->getCurrentSemaphore());
|
||||||
waitSemaphores.add(semaphore);
|
waitSemaphores.add(semaphore);
|
||||||
waitFlags.add(flags);
|
waitFlags.add(flags);
|
||||||
// std::cout << "Cmd " << handle << " wait for " << semaphore->getHandle() << std::endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Command::checkFence() {
|
void Command::checkFence() {
|
||||||
assert(state == State::Submit || !fence->isSignaled());
|
assert(state == State::Submit || !fence->isSignaled());
|
||||||
if (fence->isSignaled()) {
|
if (fence->isSignaled()) {
|
||||||
// std::cout << "Cmd " << handle << " was signaled" << std::endl;
|
|
||||||
vkResetCommandBuffer(handle, VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT);
|
vkResetCommandBuffer(handle, VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT);
|
||||||
fence->reset();
|
fence->reset();
|
||||||
for (auto& command : executingComputes) {
|
for (auto& command : executingComputes) {
|
||||||
@@ -132,8 +132,8 @@ void Command::checkFence() {
|
|||||||
pool->cacheCommands(std::move(executingRenders));
|
pool->cacheCommands(std::move(executingRenders));
|
||||||
for (auto& descriptor : boundResources) {
|
for (auto& descriptor : boundResources) {
|
||||||
descriptor->unbind();
|
descriptor->unbind();
|
||||||
// std::cout << "Cmd " << handle << " unbind " << descriptor->getHandle() << std::endl;
|
|
||||||
}
|
}
|
||||||
|
signalSemaphore->resolveSignal();
|
||||||
boundResources.clear();
|
boundResources.clear();
|
||||||
graphics->getDestructionManager()->notifyCommandComplete();
|
graphics->getDestructionManager()->notifyCommandComplete();
|
||||||
state = State::Init;
|
state = State::Init;
|
||||||
@@ -561,11 +561,12 @@ void CommandPool::submitCommands(PSemaphore signalSemaphore) {
|
|||||||
assert(command->state == Command::State::Begin); // Not in a renderpass
|
assert(command->state == Command::State::Begin); // Not in a renderpass
|
||||||
command->end();
|
command->end();
|
||||||
Array<VkSemaphore> semaphores = {command->signalSemaphore->getHandle()};
|
Array<VkSemaphore> semaphores = {command->signalSemaphore->getHandle()};
|
||||||
|
command->signalSemaphore->encodeSignal();
|
||||||
if (signalSemaphore != nullptr) {
|
if (signalSemaphore != nullptr) {
|
||||||
semaphores.add(signalSemaphore->getHandle());
|
semaphores.add(signalSemaphore->getHandle());
|
||||||
|
signalSemaphore->encodeSignal();
|
||||||
}
|
}
|
||||||
queue->submitCommandBuffer(command, semaphores);
|
queue->submitCommandBuffer(command, semaphores);
|
||||||
// std::cout << "Cmd " << command->getHandle() << " signalling " << command->signalSemaphore->getHandle() << std::endl;
|
|
||||||
|
|
||||||
PSemaphore waitSemaphore = command->signalSemaphore;
|
PSemaphore waitSemaphore = command->signalSemaphore;
|
||||||
for (uint32 i = 0; i < allocatedBuffers.size(); ++i) {
|
for (uint32 i = 0; i < allocatedBuffers.size(); ++i) {
|
||||||
@@ -587,8 +588,7 @@ void CommandPool::submitCommands(PSemaphore signalSemaphore) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CommandPool::refreshCommands() {
|
void CommandPool::refreshCommands() {
|
||||||
for (uint32 i = 0; i < allocatedBuffers.size(); ++i)
|
for (uint32 i = 0; i < allocatedBuffers.size(); ++i) {
|
||||||
{
|
|
||||||
allocatedBuffers[i]->checkFence();
|
allocatedBuffers[i]->checkFence();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ void DescriptorLayout::create() {
|
|||||||
} else {
|
} else {
|
||||||
mappings[gfxBinding.name] = {
|
mappings[gfxBinding.name] = {
|
||||||
.binding = (uint32)bindings.size(),
|
.binding = (uint32)bindings.size(),
|
||||||
|
.type = cast(gfxBinding.descriptorType),
|
||||||
};
|
};
|
||||||
bindings.add({
|
bindings.add({
|
||||||
.binding = (uint32)bindings.size(),
|
.binding = (uint32)bindings.size(),
|
||||||
@@ -205,11 +206,11 @@ void DescriptorSet::updateConstants(const std::string& name, uint32 offset, void
|
|||||||
|
|
||||||
void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PShaderBuffer shaderBuffer) {
|
void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PShaderBuffer shaderBuffer) {
|
||||||
PShaderBuffer vulkanBuffer = shaderBuffer.cast<ShaderBuffer>();
|
PShaderBuffer vulkanBuffer = shaderBuffer.cast<ShaderBuffer>();
|
||||||
uint32 binding = owner->getLayout()->mappings[name].binding;
|
const auto& map = owner->getLayout()->mappings[name];
|
||||||
|
uint32 binding = map.binding;
|
||||||
if (boundResources[binding][index] == vulkanBuffer->getAlloc() || vulkanBuffer->getAlloc() == nullptr) {
|
if (boundResources[binding][index] == vulkanBuffer->getAlloc() || vulkanBuffer->getAlloc() == nullptr) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
bufferInfos.add(VkDescriptorBufferInfo{
|
bufferInfos.add(VkDescriptorBufferInfo{
|
||||||
.buffer = vulkanBuffer->getHandle(),
|
.buffer = vulkanBuffer->getHandle(),
|
||||||
.offset = 0,
|
.offset = 0,
|
||||||
@@ -222,7 +223,7 @@ void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PSh
|
|||||||
.dstBinding = binding,
|
.dstBinding = binding,
|
||||||
.dstArrayElement = index,
|
.dstArrayElement = index,
|
||||||
.descriptorCount = 1,
|
.descriptorCount = 1,
|
||||||
.descriptorType = cast(layout->getBindings()[binding].descriptorType),
|
.descriptorType = map.type,
|
||||||
.pBufferInfo = &bufferInfos.back(),
|
.pBufferInfo = &bufferInfos.back(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -231,7 +232,8 @@ void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PSh
|
|||||||
|
|
||||||
void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PVertexBuffer indexBuffer) {
|
void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PVertexBuffer indexBuffer) {
|
||||||
PVertexBuffer vulkanBuffer = indexBuffer.cast<VertexBuffer>();
|
PVertexBuffer vulkanBuffer = indexBuffer.cast<VertexBuffer>();
|
||||||
uint32 binding = owner->getLayout()->mappings[name].binding;
|
const auto& map = owner->getLayout()->mappings[name];
|
||||||
|
uint32 binding = map.binding;
|
||||||
if (boundResources[binding][index] == vulkanBuffer->getAlloc() || vulkanBuffer->getAlloc() == nullptr) {
|
if (boundResources[binding][index] == vulkanBuffer->getAlloc() || vulkanBuffer->getAlloc() == nullptr) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -248,7 +250,7 @@ void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PVe
|
|||||||
.dstBinding = binding,
|
.dstBinding = binding,
|
||||||
.dstArrayElement = index,
|
.dstArrayElement = index,
|
||||||
.descriptorCount = 1,
|
.descriptorCount = 1,
|
||||||
.descriptorType = cast(layout->getBindings()[binding].descriptorType),
|
.descriptorType = map.type,
|
||||||
.pBufferInfo = &bufferInfos.back(),
|
.pBufferInfo = &bufferInfos.back(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -257,7 +259,8 @@ void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PVe
|
|||||||
|
|
||||||
void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PIndexBuffer indexBuffer) {
|
void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PIndexBuffer indexBuffer) {
|
||||||
PIndexBuffer vulkanBuffer = indexBuffer.cast<IndexBuffer>();
|
PIndexBuffer vulkanBuffer = indexBuffer.cast<IndexBuffer>();
|
||||||
uint32 binding = owner->getLayout()->mappings[name].binding;
|
const auto& map = owner->getLayout()->mappings[name];
|
||||||
|
uint32 binding = map.binding;
|
||||||
if (boundResources[binding][index] == vulkanBuffer->getAlloc() || vulkanBuffer->getAlloc() == nullptr) {
|
if (boundResources[binding][index] == vulkanBuffer->getAlloc() || vulkanBuffer->getAlloc() == nullptr) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -274,7 +277,7 @@ void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PIn
|
|||||||
.dstBinding = binding,
|
.dstBinding = binding,
|
||||||
.dstArrayElement = index,
|
.dstArrayElement = index,
|
||||||
.descriptorCount = 1,
|
.descriptorCount = 1,
|
||||||
.descriptorType = cast(layout->getBindings()[binding].descriptorType),
|
.descriptorType = map.type,
|
||||||
.pBufferInfo = &bufferInfos.back(),
|
.pBufferInfo = &bufferInfos.back(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -283,7 +286,8 @@ void DescriptorSet::updateBuffer(const std::string& name, uint32 index, Gfx::PIn
|
|||||||
|
|
||||||
void DescriptorSet::updateSampler(const std::string& name, uint32 index, Gfx::PSampler samplerState) {
|
void DescriptorSet::updateSampler(const std::string& name, uint32 index, Gfx::PSampler samplerState) {
|
||||||
PSampler vulkanSampler = samplerState.cast<Sampler>();
|
PSampler vulkanSampler = samplerState.cast<Sampler>();
|
||||||
uint32 binding = owner->getLayout()->mappings[name].binding;
|
const auto& map = owner->getLayout()->mappings[name];
|
||||||
|
uint32 binding = map.binding;
|
||||||
if (boundResources[binding][index] == vulkanSampler->getHandle()) {
|
if (boundResources[binding][index] == vulkanSampler->getHandle()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -301,7 +305,7 @@ void DescriptorSet::updateSampler(const std::string& name, uint32 index, Gfx::PS
|
|||||||
.dstBinding = binding,
|
.dstBinding = binding,
|
||||||
.dstArrayElement = index,
|
.dstArrayElement = index,
|
||||||
.descriptorCount = 1,
|
.descriptorCount = 1,
|
||||||
.descriptorType = VK_DESCRIPTOR_TYPE_SAMPLER,
|
.descriptorType = map.type,
|
||||||
.pImageInfo = &imageInfos.back(),
|
.pImageInfo = &imageInfos.back(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -310,7 +314,8 @@ void DescriptorSet::updateSampler(const std::string& name, uint32 index, Gfx::PS
|
|||||||
|
|
||||||
void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PTexture2D texture) {
|
void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PTexture2D texture) {
|
||||||
TextureBase* vulkanTexture = texture.cast<TextureBase>().getHandle();
|
TextureBase* vulkanTexture = texture.cast<TextureBase>().getHandle();
|
||||||
uint32 binding = owner->getLayout()->mappings[name].binding;
|
const auto& map = owner->getLayout()->mappings[name];
|
||||||
|
uint32 binding = map.binding;
|
||||||
if (boundResources[binding][index] == vulkanTexture->getHandle()) {
|
if (boundResources[binding][index] == vulkanTexture->getHandle()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -328,7 +333,7 @@ void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PT
|
|||||||
.dstBinding = binding,
|
.dstBinding = binding,
|
||||||
.dstArrayElement = index,
|
.dstArrayElement = index,
|
||||||
.descriptorCount = 1,
|
.descriptorCount = 1,
|
||||||
.descriptorType = cast(layout->getBindings()[binding].descriptorType),
|
.descriptorType = map.type,
|
||||||
.pImageInfo = &imageInfos.back(),
|
.pImageInfo = &imageInfos.back(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -337,7 +342,8 @@ void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PT
|
|||||||
|
|
||||||
void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PTexture3D texture) {
|
void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PTexture3D texture) {
|
||||||
TextureBase* vulkanTexture = texture.cast<TextureBase>().getHandle();
|
TextureBase* vulkanTexture = texture.cast<TextureBase>().getHandle();
|
||||||
uint32 binding = owner->getLayout()->mappings[name].binding;
|
const auto& map = owner->getLayout()->mappings[name];
|
||||||
|
uint32 binding = map.binding;
|
||||||
if (boundResources[binding][index] == vulkanTexture->getHandle()) {
|
if (boundResources[binding][index] == vulkanTexture->getHandle()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -355,7 +361,7 @@ void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PT
|
|||||||
.dstBinding = binding,
|
.dstBinding = binding,
|
||||||
.dstArrayElement = index,
|
.dstArrayElement = index,
|
||||||
.descriptorCount = 1,
|
.descriptorCount = 1,
|
||||||
.descriptorType = cast(layout->getBindings()[binding].descriptorType),
|
.descriptorType = map.type,
|
||||||
.pImageInfo = &imageInfos.back(),
|
.pImageInfo = &imageInfos.back(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -364,7 +370,8 @@ void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PT
|
|||||||
|
|
||||||
void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PTextureCube texture) {
|
void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PTextureCube texture) {
|
||||||
TextureBase* vulkanTexture = texture.cast<TextureBase>().getHandle();
|
TextureBase* vulkanTexture = texture.cast<TextureBase>().getHandle();
|
||||||
uint32 binding = owner->getLayout()->mappings[name].binding;
|
const auto& map = owner->getLayout()->mappings[name];
|
||||||
|
uint32 binding = map.binding;
|
||||||
if (boundResources[binding][index] == vulkanTexture->getHandle()) {
|
if (boundResources[binding][index] == vulkanTexture->getHandle()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -382,7 +389,7 @@ void DescriptorSet::updateTexture(const std::string& name, uint32 index, Gfx::PT
|
|||||||
.dstBinding = binding,
|
.dstBinding = binding,
|
||||||
.dstArrayElement = index,
|
.dstArrayElement = index,
|
||||||
.descriptorCount = 1,
|
.descriptorCount = 1,
|
||||||
.descriptorType = cast(layout->getBindings()[binding].descriptorType),
|
.descriptorType = map.type,
|
||||||
.pImageInfo = &imageInfos.back(),
|
.pImageInfo = &imageInfos.back(),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -410,6 +417,42 @@ void DescriptorSet::updateAccelerationStructure(const std::string& name, uint32
|
|||||||
}
|
}
|
||||||
|
|
||||||
void DescriptorSet::writeChanges() {
|
void DescriptorSet::writeChanges() {
|
||||||
|
if (constantData.size() > 0) {
|
||||||
|
if (constantsBuffer != nullptr)
|
||||||
|
{
|
||||||
|
graphics->getDestructionManager()->queueResourceForDestruction(std::move(constantsBuffer));
|
||||||
|
}
|
||||||
|
constantsBuffer = new BufferAllocation(graphics, owner->getLayout()->getName(),
|
||||||
|
VkBufferCreateInfo{
|
||||||
|
.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO,
|
||||||
|
.pNext = nullptr,
|
||||||
|
.size = constantData.size(),
|
||||||
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT | VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT,
|
||||||
|
},
|
||||||
|
VmaAllocationCreateInfo{
|
||||||
|
.usage = VMA_MEMORY_USAGE_AUTO,
|
||||||
|
},
|
||||||
|
Gfx::QueueType::GRAPHICS);
|
||||||
|
constantsBuffer->updateContents(0, constantData.size(), constantData.data());
|
||||||
|
constantsBuffer->pipelineBarrier(Gfx::SE_ACCESS_TRANSFER_WRITE_BIT, Gfx::SE_PIPELINE_STAGE_TRANSFER_BIT,
|
||||||
|
Gfx::SE_ACCESS_UNIFORM_READ_BIT, Gfx::SE_PIPELINE_STAGE_ALL_COMMANDS_BIT);
|
||||||
|
bufferInfos.add(VkDescriptorBufferInfo{
|
||||||
|
.buffer = constantsBuffer->buffer,
|
||||||
|
.offset = 0,
|
||||||
|
.range = constantsBuffer->size,
|
||||||
|
});
|
||||||
|
writeDescriptors.add(VkWriteDescriptorSet{
|
||||||
|
.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET,
|
||||||
|
.pNext = nullptr,
|
||||||
|
.dstSet = setHandle,
|
||||||
|
.dstBinding = 0,
|
||||||
|
.dstArrayElement = 0,
|
||||||
|
.descriptorCount = 1,
|
||||||
|
.descriptorType = VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER,
|
||||||
|
.pBufferInfo = &bufferInfos.back(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (writeDescriptors.size() > 0) {
|
if (writeDescriptors.size() > 0) {
|
||||||
if (isCurrentlyBound()) {
|
if (isCurrentlyBound()) {
|
||||||
std::cout << "Descriptor currently bound, allocate a new one instead" << std::endl;
|
std::cout << "Descriptor currently bound, allocate a new one instead" << std::endl;
|
||||||
@@ -420,16 +463,6 @@ void DescriptorSet::writeChanges() {
|
|||||||
imageInfos.clear();
|
imageInfos.clear();
|
||||||
bufferInfos.clear();
|
bufferInfos.clear();
|
||||||
}
|
}
|
||||||
constantsBuffer = graphics->createUniformBuffer(UniformBufferCreateInfo{
|
|
||||||
.sourceData =
|
|
||||||
{
|
|
||||||
.size = constantData.size(),
|
|
||||||
.data = constantData.data(),
|
|
||||||
},
|
|
||||||
.name = owner->getLayout()->getName(),
|
|
||||||
});
|
|
||||||
constantsBuffer->pipelineBarrier(Gfx::SE_ACCESS_TRANSFER_WRITE_BIT, Gfx::SE_PIPELINE_STAGE_TRANSFER_BIT,
|
|
||||||
Gfx::SE_ACCESS_UNIFORM_READ_BIT, Gfx::SE_PIPELINE_STAGE_ALL_COMMANDS_BIT);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PipelineLayout::PipelineLayout(PGraphics graphics, const std::string& name, Gfx::PPipelineLayout baseLayout)
|
PipelineLayout::PipelineLayout(PGraphics graphics, const std::string& name, Gfx::PPipelineLayout baseLayout)
|
||||||
|
|||||||
@@ -8,11 +8,11 @@
|
|||||||
namespace Seele {
|
namespace Seele {
|
||||||
namespace Vulkan {
|
namespace Vulkan {
|
||||||
DECLARE_REF(Graphics)
|
DECLARE_REF(Graphics)
|
||||||
struct DescriptorMapping
|
struct DescriptorMapping {
|
||||||
{
|
|
||||||
uint32 binding;
|
uint32 binding;
|
||||||
uint32 constantOffset;
|
uint32 constantOffset;
|
||||||
uint32 constantSize;
|
uint32 constantSize;
|
||||||
|
VkDescriptorType type;
|
||||||
};
|
};
|
||||||
class DescriptorLayout : public Gfx::DescriptorLayout {
|
class DescriptorLayout : public Gfx::DescriptorLayout {
|
||||||
public:
|
public:
|
||||||
@@ -23,7 +23,7 @@ class DescriptorLayout : public Gfx::DescriptorLayout {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
PGraphics graphics;
|
PGraphics graphics;
|
||||||
uint32 constantsSize;
|
uint32 constantsSize = 0;
|
||||||
VkShaderStageFlags constantsStages;
|
VkShaderStageFlags constantsStages;
|
||||||
Array<VkDescriptorSetLayoutBinding> bindings;
|
Array<VkDescriptorSetLayoutBinding> bindings;
|
||||||
Map<std::string, DescriptorMapping> mappings;
|
Map<std::string, DescriptorMapping> mappings;
|
||||||
@@ -73,7 +73,7 @@ class DescriptorSet : public Gfx::DescriptorSet, public CommandBoundResource {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector<uint8> constantData;
|
std::vector<uint8> constantData;
|
||||||
Gfx::OUniformBuffer constantsBuffer;
|
OBufferAllocation constantsBuffer;
|
||||||
VkShaderStageFlags constantsStageFlags;
|
VkShaderStageFlags constantsStageFlags;
|
||||||
List<VkDescriptorImageInfo> imageInfos;
|
List<VkDescriptorImageInfo> imageInfos;
|
||||||
List<VkDescriptorBufferInfo> bufferInfos;
|
List<VkDescriptorBufferInfo> bufferInfos;
|
||||||
|
|||||||
@@ -142,7 +142,9 @@ Graphics::~Graphics() {
|
|||||||
|
|
||||||
void Graphics::init(GraphicsInitializer initInfo) {
|
void Graphics::init(GraphicsInitializer initInfo) {
|
||||||
initInstance(initInfo);
|
initInstance(initInfo);
|
||||||
//setupDebugCallback();
|
#ifdef ENABLE_VALIDATION
|
||||||
|
setupDebugCallback();
|
||||||
|
#endif
|
||||||
pickPhysicalDevice();
|
pickPhysicalDevice();
|
||||||
createDevice(initInfo);
|
createDevice(initInfo);
|
||||||
VmaAllocatorCreateInfo createInfo = {
|
VmaAllocatorCreateInfo createInfo = {
|
||||||
@@ -197,6 +199,12 @@ void Graphics::waitDeviceIdle() {
|
|||||||
getGraphicsCommands()->refreshCommands();
|
getGraphicsCommands()->refreshCommands();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Graphics::executeCommands(Gfx::ORenderCommand commands) {
|
||||||
|
Array<Gfx::ORenderCommand> commandArray;
|
||||||
|
commandArray.add(std::move(commands));
|
||||||
|
getGraphicsCommands()->getCommands()->executeCommands(std::move(commandArray));
|
||||||
|
}
|
||||||
|
|
||||||
void Graphics::executeCommands(Array<Gfx::ORenderCommand> commands) {
|
void Graphics::executeCommands(Array<Gfx::ORenderCommand> commands) {
|
||||||
getGraphicsCommands()->getCommands()->executeCommands(std::move(commands));
|
getGraphicsCommands()->getCommands()->executeCommands(std::move(commands));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ class Graphics : public Gfx::Graphics {
|
|||||||
virtual void endRenderPass() override;
|
virtual void endRenderPass() override;
|
||||||
virtual void waitDeviceIdle() override;
|
virtual void waitDeviceIdle() override;
|
||||||
|
|
||||||
|
virtual void executeCommands(Gfx::ORenderCommand commands) override;
|
||||||
virtual void executeCommands(Array<Gfx::ORenderCommand> commands) override;
|
virtual void executeCommands(Array<Gfx::ORenderCommand> commands) override;
|
||||||
virtual void executeCommands(Gfx::OComputeCommand commands) override;
|
virtual void executeCommands(Gfx::OComputeCommand commands) override;
|
||||||
virtual void executeCommands(Array<Gfx::OComputeCommand> commands) override;
|
virtual void executeCommands(Array<Gfx::OComputeCommand> commands) override;
|
||||||
|
|||||||
@@ -25,6 +25,8 @@ void Queue::submitCommandBuffer(PCommand command, const Array<VkSemaphore>& sign
|
|||||||
VkCommandBuffer cmdHandle = command->handle;
|
VkCommandBuffer cmdHandle = command->handle;
|
||||||
|
|
||||||
Array<VkSemaphore> waitSemaphores;
|
Array<VkSemaphore> waitSemaphores;
|
||||||
|
// wait semaphores get bound to the cmd when they are added
|
||||||
|
// and unbound when the command completes
|
||||||
for (PSemaphore semaphore : command->waitSemaphores) {
|
for (PSemaphore semaphore : command->waitSemaphores) {
|
||||||
waitSemaphores.add(semaphore->getHandle());
|
waitSemaphores.add(semaphore->getHandle());
|
||||||
}
|
}
|
||||||
@@ -40,7 +42,6 @@ void Queue::submitCommandBuffer(PCommand command, const Array<VkSemaphore>& sign
|
|||||||
.signalSemaphoreCount = static_cast<uint32>(signalSemaphores.size()),
|
.signalSemaphoreCount = static_cast<uint32>(signalSemaphores.size()),
|
||||||
.pSignalSemaphores = signalSemaphores.data(),
|
.pSignalSemaphores = signalSemaphores.data(),
|
||||||
};
|
};
|
||||||
|
|
||||||
VK_CHECK(vkQueueSubmit(queue, 1, &submitInfo, command->fence->getHandle()));
|
VK_CHECK(vkQueueSubmit(queue, 1, &submitInfo, command->fence->getHandle()));
|
||||||
command->fence->submit();
|
command->fence->submit();
|
||||||
command->state = Command::State::Submit;
|
command->state = Command::State::Submit;
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
using namespace Seele;
|
using namespace Seele;
|
||||||
using namespace Seele::Vulkan;
|
using namespace Seele::Vulkan;
|
||||||
|
|
||||||
Semaphore::Semaphore(PGraphics graphics) : graphics(graphics) {
|
SemaphoreHandle::SemaphoreHandle(PGraphics graphics, const std::string& name) : CommandBoundResource(graphics, name) {
|
||||||
VkSemaphoreCreateInfo info = {
|
VkSemaphoreCreateInfo info = {
|
||||||
.sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO,
|
.sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO,
|
||||||
.pNext = nullptr,
|
.pNext = nullptr,
|
||||||
@@ -16,8 +16,26 @@ Semaphore::Semaphore(PGraphics graphics) : graphics(graphics) {
|
|||||||
VK_CHECK(vkCreateSemaphore(graphics->getDevice(), &info, nullptr, &handle));
|
VK_CHECK(vkCreateSemaphore(graphics->getDevice(), &info, nullptr, &handle));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SemaphoreHandle::~SemaphoreHandle() { vkDestroySemaphore(graphics->getDevice(), handle, nullptr); }
|
||||||
|
|
||||||
|
Semaphore::Semaphore(PGraphics graphics) : graphics(graphics) {}
|
||||||
|
|
||||||
Semaphore::~Semaphore() {
|
Semaphore::~Semaphore() {
|
||||||
// graphics->getDestructionManager()->queueSemaphore(graphics->getGraphicsCommands()->getCommands(), handle);
|
for (auto& h : handles) {
|
||||||
|
graphics->getDestructionManager()->queueResourceForDestruction(std::move(h));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Semaphore::rotateSemaphore() {
|
||||||
|
for (uint32 i = 0; i < handles.size(); ++i) {
|
||||||
|
if (handles[i]->isCurrentlyBound()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
currentHandle = i;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
currentHandle = handles.size();
|
||||||
|
handles.add(new SemaphoreHandle(graphics, "Semaphore"));
|
||||||
}
|
}
|
||||||
|
|
||||||
Fence::Fence(PGraphics graphics) : graphics(graphics), status(Status::Ready) {
|
Fence::Fence(PGraphics graphics) : graphics(graphics), status(Status::Ready) {
|
||||||
|
|||||||
@@ -4,21 +4,67 @@
|
|||||||
#include <vk_mem_alloc.h>
|
#include <vk_mem_alloc.h>
|
||||||
#include <vulkan/vulkan.h>
|
#include <vulkan/vulkan.h>
|
||||||
|
|
||||||
|
|
||||||
namespace Seele {
|
namespace Seele {
|
||||||
namespace Vulkan {
|
namespace Vulkan {
|
||||||
DECLARE_REF(DescriptorPool)
|
DECLARE_REF(DescriptorPool)
|
||||||
DECLARE_REF(CommandPool)
|
DECLARE_REF(CommandPool)
|
||||||
DECLARE_REF(Command)
|
DECLARE_REF(Command)
|
||||||
DECLARE_REF(Graphics)
|
DECLARE_REF(Graphics)
|
||||||
class Semaphore {
|
|
||||||
|
class CommandBoundResource {
|
||||||
public:
|
public:
|
||||||
Semaphore(PGraphics graphics);
|
CommandBoundResource(PGraphics graphics, const std::string& name) : graphics(graphics), name(name) {}
|
||||||
virtual ~Semaphore();
|
virtual ~CommandBoundResource() {
|
||||||
|
if (isCurrentlyBound())
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
constexpr bool isCurrentlyBound() const { return bindCount > 0; }
|
||||||
|
constexpr void bind() { bindCount++; }
|
||||||
|
constexpr void unbind() { bindCount--; }
|
||||||
|
|
||||||
|
protected:
|
||||||
|
PGraphics graphics;
|
||||||
|
std::string name;
|
||||||
|
uint64 bindCount = 0;
|
||||||
|
};
|
||||||
|
DEFINE_REF(CommandBoundResource)
|
||||||
|
|
||||||
|
class SemaphoreHandle : public CommandBoundResource {
|
||||||
|
public:
|
||||||
|
SemaphoreHandle(PGraphics graphics, const std::string& name);
|
||||||
|
virtual ~SemaphoreHandle();
|
||||||
|
|
||||||
constexpr VkSemaphore getHandle() const { return handle; }
|
constexpr VkSemaphore getHandle() const { return handle; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
VkSemaphore handle;
|
VkSemaphore handle;
|
||||||
|
};
|
||||||
|
DEFINE_REF(SemaphoreHandle)
|
||||||
|
|
||||||
|
class Semaphore {
|
||||||
|
public:
|
||||||
|
Semaphore(PGraphics graphics);
|
||||||
|
virtual ~Semaphore();
|
||||||
|
// call when you need a new semaphore
|
||||||
|
void rotateSemaphore();
|
||||||
|
// call when the semaphore is to signal something, for example after using it in vkAcquireImage
|
||||||
|
void encodeSignal() {
|
||||||
|
if (handles.size() == 0)
|
||||||
|
return;
|
||||||
|
handles[currentHandle]->bind();
|
||||||
|
}
|
||||||
|
// call when the semaphore has been signalled
|
||||||
|
void resolveSignal() {
|
||||||
|
if (handles.size() == 0)
|
||||||
|
return;
|
||||||
|
handles[currentHandle]->unbind();
|
||||||
|
}
|
||||||
|
constexpr VkSemaphore getHandle() const { return handles[currentHandle]->getHandle(); }
|
||||||
|
PSemaphoreHandle getCurrentSemaphore() const { return handles[currentHandle]; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
Array<OSemaphoreHandle> handles;
|
||||||
|
uint32 currentHandle = 0;
|
||||||
PGraphics graphics;
|
PGraphics graphics;
|
||||||
};
|
};
|
||||||
DEFINE_REF(Semaphore)
|
DEFINE_REF(Semaphore)
|
||||||
@@ -45,7 +91,6 @@ class Fence {
|
|||||||
VkFence fence;
|
VkFence fence;
|
||||||
};
|
};
|
||||||
DEFINE_REF(Fence)
|
DEFINE_REF(Fence)
|
||||||
DECLARE_REF(CommandBoundResource)
|
|
||||||
class DestructionManager {
|
class DestructionManager {
|
||||||
public:
|
public:
|
||||||
DestructionManager(PGraphics graphics);
|
DestructionManager(PGraphics graphics);
|
||||||
@@ -59,24 +104,6 @@ class DestructionManager {
|
|||||||
};
|
};
|
||||||
DEFINE_REF(DestructionManager)
|
DEFINE_REF(DestructionManager)
|
||||||
|
|
||||||
class CommandBoundResource {
|
|
||||||
public:
|
|
||||||
CommandBoundResource(PGraphics graphics, const std::string& name) : graphics(graphics), name(name) {}
|
|
||||||
virtual ~CommandBoundResource() {
|
|
||||||
if (isCurrentlyBound())
|
|
||||||
abort();
|
|
||||||
}
|
|
||||||
constexpr bool isCurrentlyBound() const { return bindCount > 0; }
|
|
||||||
constexpr void bind() { bindCount++; }
|
|
||||||
constexpr void unbind() { bindCount--; }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
PGraphics graphics;
|
|
||||||
std::string name;
|
|
||||||
uint64 bindCount = 0;
|
|
||||||
};
|
|
||||||
DEFINE_REF(CommandBoundResource)
|
|
||||||
|
|
||||||
class SamplerHandle : public CommandBoundResource {
|
class SamplerHandle : public CommandBoundResource {
|
||||||
public:
|
public:
|
||||||
SamplerHandle(PGraphics graphics, VkSamplerCreateInfo createInfo);
|
SamplerHandle(PGraphics graphics, VkSamplerCreateInfo createInfo);
|
||||||
|
|||||||
@@ -59,6 +59,7 @@ Window::Window(PGraphics graphics, const WindowCreateInfo& createInfo)
|
|||||||
: graphics(graphics), preferences(createInfo), instance(graphics->getInstance()), swapchain(VK_NULL_HANDLE) {
|
: graphics(graphics), preferences(createInfo), instance(graphics->getInstance()), swapchain(VK_NULL_HANDLE) {
|
||||||
glfwGetMonitorContentScale(glfwGetPrimaryMonitor(), &contentScaleX, &contentScaleY);
|
glfwGetMonitorContentScale(glfwGetPrimaryMonitor(), &contentScaleX, &contentScaleY);
|
||||||
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
|
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
|
||||||
|
glfwWindowHint(GLFW_VISIBLE, GLFW_FALSE);
|
||||||
GLFWwindow* handle = glfwCreateWindow(createInfo.width / contentScaleX, createInfo.height / contentScaleY, createInfo.title, nullptr, nullptr);
|
GLFWwindow* handle = glfwCreateWindow(createInfo.width / contentScaleX, createInfo.height / contentScaleY, createInfo.title, nullptr, nullptr);
|
||||||
windowHandle = handle;
|
windowHandle = handle;
|
||||||
glfwSetWindowUserPointer(handle, this);
|
glfwSetWindowUserPointer(handle, this);
|
||||||
@@ -92,11 +93,16 @@ Window::~Window() {
|
|||||||
|
|
||||||
void Window::pollInput() { glfwPollEvents(); }
|
void Window::pollInput() { glfwPollEvents(); }
|
||||||
|
|
||||||
|
void Window::show() { glfwShowWindow(static_cast<GLFWwindow*>(windowHandle)); }
|
||||||
|
|
||||||
void Window::beginFrame() {
|
void Window::beginFrame() {
|
||||||
imageAvailableFences[currentSemaphoreIndex]->reset();
|
imageAvailableFences[currentSemaphoreIndex]->reset();
|
||||||
|
imageAvailableSemaphores[currentSemaphoreIndex]->resolveSignal();
|
||||||
|
imageAvailableSemaphores[currentSemaphoreIndex]->rotateSemaphore();
|
||||||
VK_CHECK(vkAcquireNextImageKHR(graphics->getDevice(), swapchain, std::numeric_limits<uint64>::max(),
|
VK_CHECK(vkAcquireNextImageKHR(graphics->getDevice(), swapchain, std::numeric_limits<uint64>::max(),
|
||||||
imageAvailableSemaphores[currentSemaphoreIndex]->getHandle(),
|
imageAvailableSemaphores[currentSemaphoreIndex]->getHandle(),
|
||||||
imageAvailableFences[currentSemaphoreIndex]->getHandle(), ¤tImageIndex));
|
imageAvailableFences[currentSemaphoreIndex]->getHandle(), ¤tImageIndex));
|
||||||
|
imageAvailableSemaphores[currentSemaphoreIndex]->encodeSignal();
|
||||||
imageAvailableFences[currentSemaphoreIndex]->submit();
|
imageAvailableFences[currentSemaphoreIndex]->submit();
|
||||||
graphics->getGraphicsCommands()->getCommands()->waitForSemaphore(VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT,
|
graphics->getGraphicsCommands()->getCommands()->waitForSemaphore(VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT,
|
||||||
imageAvailableSemaphores[currentSemaphoreIndex]);
|
imageAvailableSemaphores[currentSemaphoreIndex]);
|
||||||
@@ -111,6 +117,7 @@ void Window::endFrame() {
|
|||||||
swapChainTextures[currentImageIndex]->changeLayout(Gfx::SE_IMAGE_LAYOUT_PRESENT_SRC_KHR, Gfx::SE_ACCESS_COLOR_ATTACHMENT_WRITE_BIT,
|
swapChainTextures[currentImageIndex]->changeLayout(Gfx::SE_IMAGE_LAYOUT_PRESENT_SRC_KHR, Gfx::SE_ACCESS_COLOR_ATTACHMENT_WRITE_BIT,
|
||||||
Gfx::SE_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT, Gfx::SE_ACCESS_MEMORY_READ_BIT,
|
Gfx::SE_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT, Gfx::SE_ACCESS_MEMORY_READ_BIT,
|
||||||
Gfx::SE_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
|
Gfx::SE_PIPELINE_STAGE_TOP_OF_PIPE_BIT);
|
||||||
|
renderingDoneSemaphores[currentSemaphoreIndex]->rotateSemaphore();
|
||||||
graphics->getGraphicsCommands()->submitCommands(renderingDoneSemaphores[currentSemaphoreIndex]);
|
graphics->getGraphicsCommands()->submitCommands(renderingDoneSemaphores[currentSemaphoreIndex]);
|
||||||
VkSemaphore renderDoneHandle = renderingDoneSemaphores[currentSemaphoreIndex]->getHandle();
|
VkSemaphore renderDoneHandle = renderingDoneSemaphores[currentSemaphoreIndex]->getHandle();
|
||||||
VkPresentInfoKHR presentInfo = {
|
VkPresentInfoKHR presentInfo = {
|
||||||
@@ -130,6 +137,7 @@ void Window::endFrame() {
|
|||||||
} else {
|
} else {
|
||||||
VK_CHECK(r);
|
VK_CHECK(r);
|
||||||
}
|
}
|
||||||
|
renderingDoneSemaphores[currentSemaphoreIndex]->resolveSignal();
|
||||||
currentSemaphoreIndex = (currentSemaphoreIndex + 1) % Gfx::numFramesBuffered;
|
currentSemaphoreIndex = (currentSemaphoreIndex + 1) % Gfx::numFramesBuffered;
|
||||||
currentFrameIndex = currentSemaphoreIndex;
|
currentFrameIndex = currentSemaphoreIndex;
|
||||||
// graphics->waitDeviceIdle();
|
// graphics->waitDeviceIdle();
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ class Window : public Gfx::Window {
|
|||||||
Window(PGraphics graphics, const WindowCreateInfo& createInfo);
|
Window(PGraphics graphics, const WindowCreateInfo& createInfo);
|
||||||
virtual ~Window();
|
virtual ~Window();
|
||||||
virtual void pollInput() override;
|
virtual void pollInput() override;
|
||||||
|
virtual void show() override;
|
||||||
virtual void beginFrame() override;
|
virtual void beginFrame() override;
|
||||||
virtual void endFrame() override;
|
virtual void endFrame() override;
|
||||||
virtual Gfx::PTexture2D getBackBuffer() const override;
|
virtual Gfx::PTexture2D getBackBuffer() const override;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ LightEnvironment::LightEnvironment(Gfx::PGraphics graphics) : graphics(graphics)
|
|||||||
});
|
});
|
||||||
layout->addDescriptorBinding(Gfx::DescriptorBinding{
|
layout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.name = "numDirectionalLights",
|
.name = "numDirectionalLights",
|
||||||
.uniformLength = sizeof(uint)
|
.uniformLength = sizeof(uint32),
|
||||||
});
|
});
|
||||||
layout->addDescriptorBinding(Gfx::DescriptorBinding{
|
layout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.name = "pointLights",
|
.name = "pointLights",
|
||||||
@@ -19,7 +19,7 @@ LightEnvironment::LightEnvironment(Gfx::PGraphics graphics) : graphics(graphics)
|
|||||||
});
|
});
|
||||||
layout->addDescriptorBinding(Gfx::DescriptorBinding{
|
layout->addDescriptorBinding(Gfx::DescriptorBinding{
|
||||||
.name = "numPointLights",
|
.name = "numPointLights",
|
||||||
.uniformLength = sizeof(uint)
|
.uniformLength = sizeof(uint32),
|
||||||
});
|
});
|
||||||
layout->create();
|
layout->create();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user