Skip to content

Commit

Permalink
720p 16x16 spp 150.
Browse files Browse the repository at this point in the history
  • Loading branch information
kugimasa committed Aug 29, 2023
1 parent ca820a0 commit d8a249f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/include/renderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Renderer {

private:
static const uint32_t WIDTH = 1280;
static const uint32_t HEIGHT = 960;
static const uint32_t HEIGHT = 720;
static const uint32_t MAX_FRAME = 600;
Camera camera_{};
Scene scene_{};
Expand Down
2 changes: 1 addition & 1 deletion src/render.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ bool Renderer::InitDevice() {
requiredLimits.limits.maxStorageBufferBindingSize = WIDTH * HEIGHT * sizeof(float);;
requiredLimits.limits.maxStorageTexturesPerShaderStage = 1;
requiredLimits.limits.maxComputeWorkgroupSizeX = 80;
requiredLimits.limits.maxComputeWorkgroupSizeY = 60;
requiredLimits.limits.maxComputeWorkgroupSizeY = 45;
requiredLimits.limits.maxComputeWorkgroupSizeZ = 1;
requiredLimits.limits.maxComputeInvocationsPerWorkgroup = 256;
requiredLimits.limits.maxComputeWorkgroupsPerDimension = 80;
Expand Down

0 comments on commit d8a249f

Please sign in to comment.