Fixing some potential crashes
This commit is contained in:
+1
-1
@@ -26,7 +26,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "RelWithDebInfo",
|
"name": "RelWithDebInfo",
|
||||||
"generator": "Ninja Multi-Config",
|
"generator": "Ninja",
|
||||||
"configurationType": "RelWithDebInfo",
|
"configurationType": "RelWithDebInfo",
|
||||||
"buildRoot": "${workspaceRoot}/build",
|
"buildRoot": "${workspaceRoot}/build",
|
||||||
"installRoot": "C:/Program Files/Seele",
|
"installRoot": "C:/Program Files/Seele",
|
||||||
|
|||||||
Binary file not shown.
+6
-94
@@ -24,54 +24,11 @@ using namespace Seele::Editor;
|
|||||||
// make it global so it gets deleted last and automatically
|
// make it global so it gets deleted last and automatically
|
||||||
static Gfx::OGraphics graphics;
|
static Gfx::OGraphics graphics;
|
||||||
|
|
||||||
struct Halfedge {
|
|
||||||
uint32 vertexID;
|
|
||||||
uint32 nextID;
|
|
||||||
uint32 prevID;
|
|
||||||
uint32 twinID;
|
|
||||||
};
|
|
||||||
Array<Halfedge> generateEdges() {
|
|
||||||
Array<UVector> indices = {UVector(0, 1, 4), UVector(4, 1, 5), UVector(1, 2, 5), UVector(5, 2, 6), UVector(2, 3, 6),
|
|
||||||
UVector(6, 3, 7), UVector(4, 5, 8), UVector(8, 5, 9), UVector(5, 6, 9), UVector(9, 6, 10),
|
|
||||||
UVector(6, 7, 10), UVector(10, 7, 11), UVector(8, 9, 12), UVector(12, 9, 13), UVector(9, 10, 13),
|
|
||||||
UVector(13, 10, 14), UVector(10, 11, 14), UVector(14, 11, 15)};
|
|
||||||
Array<Halfedge> edges;
|
|
||||||
for (auto ind : indices) {
|
|
||||||
uint32 baseIndex = (uint32)edges.size();
|
|
||||||
edges.add(Halfedge{ind.x, baseIndex + 1, baseIndex + 2, UINT32_MAX});
|
|
||||||
edges.add(Halfedge{ind.y, baseIndex + 2, baseIndex, UINT32_MAX});
|
|
||||||
edges.add(Halfedge{ind.z, baseIndex, baseIndex + 1, UINT32_MAX});
|
|
||||||
}
|
|
||||||
for (uint32 i = 0; i < edges.size(); ++i) {
|
|
||||||
if (edges[i].twinID == UINT32_MAX) {
|
|
||||||
for (uint32 j = 0; j < edges.size(); ++j) {
|
|
||||||
if (edges[i].vertexID == edges[edges[j].nextID].vertexID && edges[edges[i].nextID].vertexID == edges[j].vertexID) {
|
|
||||||
edges[i].twinID = j;
|
|
||||||
edges[j].twinID = i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return edges;
|
|
||||||
}
|
|
||||||
|
|
||||||
Array<uint32> generateArray() { return Array<uint32>(); }
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
std::string gameName = "MeshShadingDemo";
|
std::string gameName = "MinecraftClone";
|
||||||
#ifdef WIN32
|
std::filesystem::path outputPath = fmt::format("../../{0}Game", gameName);
|
||||||
std::filesystem::path outputPath = "C:/Users/Dynamitos/MeshShadingDemoGame";
|
std::filesystem::path sourcePath = fmt::format("../../{0}", gameName);
|
||||||
std::filesystem::path sourcePath = "C:/Users/Dynamitos/MeshShadingDemo";
|
std::filesystem::path binaryPath = sourcePath / "bin" / fmt::format("{0}.dll", gameName);
|
||||||
std::filesystem::path binaryPath = sourcePath / "bin" / "MeshShadingDemo.dll";
|
|
||||||
#elif __APPLE__
|
|
||||||
std::filesystem::path outputPath = "/Users/dynamitos/MeshShadingDemoGame";
|
|
||||||
std::filesystem::path sourcePath = "/Users/dynamitos/MeshShadingDemo";
|
|
||||||
std::filesystem::path binaryPath = sourcePath / "cmake" / "libMeshShadingDemo.dylib";
|
|
||||||
#else
|
|
||||||
std::filesystem::path outputPath = "/home/dynamitos/MeshShadingDemoGame";
|
|
||||||
std::filesystem::path sourcePath = "/home/dynamitos/MeshShadingDemo";
|
|
||||||
std::filesystem::path binaryPath = sourcePath / "cmake" / "libMeshShadingDemo.so";
|
|
||||||
#endif
|
|
||||||
std::filesystem::path cmakePath = outputPath / "cmake";
|
std::filesystem::path cmakePath = outputPath / "cmake";
|
||||||
if (true) {
|
if (true) {
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
@@ -90,55 +47,10 @@ int main() {
|
|||||||
AssetImporter::importFont(FontImportArgs{
|
AssetImporter::importFont(FontImportArgs{
|
||||||
.filePath = "./fonts/arial.ttf",
|
.filePath = "./fonts/arial.ttf",
|
||||||
});
|
});
|
||||||
AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
.filePath = sourcePath / "import/models/cube.fbx",
|
|
||||||
});
|
|
||||||
// AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/models/culling.fbx",
|
|
||||||
//});
|
|
||||||
AssetImporter::importTexture(TextureImportArgs{
|
|
||||||
.filePath = sourcePath / "import/textures/skybox.jpg",
|
|
||||||
.type = TextureImportType::TEXTURE_CUBEMAP,
|
|
||||||
});
|
|
||||||
//AssetImporter::importEnvironmentMap(EnvironmentImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/models/main1_sponza/textures/kloppenheim_05_4k.hdr",
|
|
||||||
//});
|
|
||||||
AssetImporter::importEnvironmentMap(EnvironmentImportArgs{
|
AssetImporter::importEnvironmentMap(EnvironmentImportArgs{
|
||||||
.filePath = sourcePath / "import/textures/newport_loft.hdr",
|
.filePath = sourcePath / "import" / "textures" / "newport_loft.hdr",
|
||||||
});
|
});
|
||||||
// AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/models/ship.fbx",
|
|
||||||
// .importPath = "ship",
|
|
||||||
// });
|
|
||||||
// AssetImporter::importTexture(TextureImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/textures/azeroth.png",
|
|
||||||
//});
|
|
||||||
// AssetImporter::importTexture(TextureImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/textures/azeroth_height.png",
|
|
||||||
//});
|
|
||||||
// AssetImporter::importTexture(TextureImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/textures/wgen.png",
|
|
||||||
//});
|
|
||||||
// AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/models/after-the-rain-vr-sound/source/Whitechapel.glb",
|
|
||||||
// .importPath = "Whitechapel",
|
|
||||||
//});
|
|
||||||
// AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/models/box.glb",
|
|
||||||
// .importPath = "",
|
|
||||||
//});
|
|
||||||
AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
.filePath = sourcePath / "import/models/rttest.glb",
|
|
||||||
.importPath = "",
|
|
||||||
});
|
|
||||||
AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
.filePath = sourcePath / "import/models/main1_sponza/sponza.gltf",
|
|
||||||
.importPath = "sponza",
|
|
||||||
});
|
|
||||||
// AssetImporter::importMesh(MeshImportArgs{
|
|
||||||
// .filePath = sourcePath / "import/models/town_hall.glb",
|
|
||||||
// .importPath = "",
|
|
||||||
// });
|
|
||||||
getThreadPool().waitIdle();
|
getThreadPool().waitIdle();
|
||||||
vd->commitMeshes();
|
vd->commitMeshes();
|
||||||
WindowCreateInfo mainWindowInfo = {
|
WindowCreateInfo mainWindowInfo = {
|
||||||
|
|||||||
@@ -224,6 +224,14 @@ void AssetRegistry::initialize(const std::filesystem::path& _rootFolder, Gfx::PG
|
|||||||
this->graphics = _graphics;
|
this->graphics = _graphics;
|
||||||
this->rootFolder = _rootFolder;
|
this->rootFolder = _rootFolder;
|
||||||
this->assetRoot = new AssetFolder("");
|
this->assetRoot = new AssetFolder("");
|
||||||
|
if (!std::filesystem::exists(rootFolder))
|
||||||
|
{
|
||||||
|
std::filesystem::create_directories(rootFolder);
|
||||||
|
}
|
||||||
|
else if (!std::filesystem::is_directory(rootFolder))
|
||||||
|
{
|
||||||
|
throw std::logic_error("Asset Folder is not a directory!!");
|
||||||
|
}
|
||||||
loadRegistryInternal();
|
loadRegistryInternal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
#include "RayTracingPass.h"
|
#include "RayTracingPass.h"
|
||||||
#include "Asset/AssetRegistry.h"
|
#include "Asset/AssetRegistry.h"
|
||||||
#include "Asset/MeshAsset.h"
|
#include "Asset/MeshAsset.h"
|
||||||
|
#include "Asset/EnvironmentMapAsset.h"
|
||||||
#include "Graphics/Mesh.h"
|
#include "Graphics/Mesh.h"
|
||||||
#include "Graphics/RayTracing.h"
|
#include "Graphics/RayTracing.h"
|
||||||
#include "Graphics/Shader.h"
|
#include "Graphics/Shader.h"
|
||||||
@@ -59,7 +60,7 @@ RayTracingPass::RayTracingPass(Gfx::PGraphics graphics, PScene scene) : RenderPa
|
|||||||
.useMaterial = true,
|
.useMaterial = true,
|
||||||
.rayTracing = true,
|
.rayTracing = true,
|
||||||
});
|
});
|
||||||
skyBox = AssetRegistry::findTexture("", "skybox")->getTexture().cast<Gfx::TextureCube>();
|
skyBox = AssetRegistry::findEnvironmentMap("", "newport_loft")->getIrradianceMap();
|
||||||
skyBoxSampler = graphics->createSampler({});
|
skyBoxSampler = graphics->createSampler({});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ using namespace Seele::Vulkan;
|
|||||||
BufferAllocation::BufferAllocation(PGraphics graphics, const std::string& name, VkBufferCreateInfo bufferInfo,
|
BufferAllocation::BufferAllocation(PGraphics graphics, const std::string& name, VkBufferCreateInfo bufferInfo,
|
||||||
VmaAllocationCreateInfo allocInfo, Gfx::QueueType owner, uint64 alignment)
|
VmaAllocationCreateInfo allocInfo, Gfx::QueueType owner, uint64 alignment)
|
||||||
: CommandBoundResource(graphics, name), size(bufferInfo.size), owner(owner) {
|
: CommandBoundResource(graphics, name), size(bufferInfo.size), owner(owner) {
|
||||||
|
if (bufferInfo.size == 0)
|
||||||
|
return;
|
||||||
VK_CHECK(vmaCreateBufferWithAlignment(graphics->getAllocator(), &bufferInfo, &allocInfo, alignment, &buffer, &allocation, &info));
|
VK_CHECK(vmaCreateBufferWithAlignment(graphics->getAllocator(), &bufferInfo, &allocInfo, alignment, &buffer, &allocation, &info));
|
||||||
vmaGetAllocationMemoryProperties(graphics->getAllocator(), allocation, &properties);
|
vmaGetAllocationMemoryProperties(graphics->getAllocator(), allocation, &properties);
|
||||||
assert(!name.empty());
|
assert(!name.empty());
|
||||||
@@ -437,6 +439,8 @@ void* ShaderBuffer::map() { return Vulkan::Buffer::map(); }
|
|||||||
void ShaderBuffer::unmap() { Vulkan::Buffer::unmap(); }
|
void ShaderBuffer::unmap() { Vulkan::Buffer::unmap(); }
|
||||||
|
|
||||||
void ShaderBuffer::clear() {
|
void ShaderBuffer::clear() {
|
||||||
|
if (getAlloc() == nullptr)
|
||||||
|
return;
|
||||||
PCommand command = graphics->getQueueCommands(getAlloc()->owner)->getCommands();
|
PCommand command = graphics->getQueueCommands(getAlloc()->owner)->getCommands();
|
||||||
command->bindResource(PBufferAllocation(getAlloc()));
|
command->bindResource(PBufferAllocation(getAlloc()));
|
||||||
vkCmdFillBuffer(command->getHandle(), Vulkan::Buffer::getHandle(), 0, VK_WHOLE_SIZE, 0);
|
vkCmdFillBuffer(command->getHandle(), Vulkan::Buffer::getHandle(), 0, VK_WHOLE_SIZE, 0);
|
||||||
|
|||||||
@@ -447,7 +447,7 @@ Gfx::OTopLevelAS Graphics::createTopLevelAccelerationStructure(const Gfx::TopLev
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Graphics::buildBottomLevelAccelerationStructures(Array<Gfx::PBottomLevelAS> data) {
|
void Graphics::buildBottomLevelAccelerationStructures(Array<Gfx::PBottomLevelAS> data) {
|
||||||
if (!supportRayTracing())
|
if (!supportRayTracing() || data.empty())
|
||||||
return;
|
return;
|
||||||
Gfx::PShaderBuffer verticesBuffer = StaticMeshVertexData::getInstance()->getPositionBuffer();
|
Gfx::PShaderBuffer verticesBuffer = StaticMeshVertexData::getInstance()->getPositionBuffer();
|
||||||
Gfx::PIndexBuffer indexBuffer = StaticMeshVertexData::getInstance()->getIndexBuffer();
|
Gfx::PIndexBuffer indexBuffer = StaticMeshVertexData::getInstance()->getIndexBuffer();
|
||||||
|
|||||||
Reference in New Issue
Block a user