~ | Materials in a seperate SSBO

This commit is contained in:
TheRedShip
2025-01-06 10:41:24 +01:00
parent dcda41b186
commit cb2bfad4b9
5 changed files with 72 additions and 34 deletions

View File

@ -7,10 +7,7 @@ layout(binding = 1, rgba32f) uniform image2D accumulation_image;
struct GPUObject {
vec3 position; // 12 + 4
vec3 color; // 12 + 4
float emission; // 4
float roughness; // 4
float metallic; // 4
int mat_index; // 4
float radius; // 4
vec3 normal; // 12 + 4
@ -21,11 +18,24 @@ struct GPUObject {
int type; // 4
};
struct GPUMaterial
{
vec3 color; // 12 + 4
float emission; // 4
float roughness; // 4
float metallic; // 4
};
layout(std430, binding = 1) buffer ObjectBuffer
{
GPUObject objects[];
};
layout(std430, binding = 2) buffer MaterialBuffer
{
GPUMaterial materials[];
};
uniform int u_objectsNum;
uniform vec2 u_resolution;
uniform vec3 u_cameraPosition;
@ -91,6 +101,7 @@ vec3 pathtrace(Ray ray, inout uint rng_state)
}
GPUObject obj = objects[hit.obj_index];
GPUMaterial mat = materials[obj.mat_index];
// RR
float p = max(color.r, max(color.g, color.b));
@ -99,10 +110,10 @@ vec3 pathtrace(Ray ray, inout uint rng_state)
color /= p;
//
color *= obj.color;
light += obj.emission * obj.color;
color *= mat.color;
light += mat.emission * mat.color;
if (obj.emission > 0.0)
if (mat.emission > 0.0)
break;
ray = newRay(hit, ray, rng_state);

View File

@ -2,17 +2,19 @@
Ray newRay(hitInfo hit, Ray ray, inout uint rng_state)
{
GPUObject obj;
GPUMaterial mat;
Ray new_ray;
obj = objects[hit.obj_index];
mat = materials[obj.mat_index];
vec3 diffuse_dir = normalize(hit.normal + randomDirection(rng_state));
vec3 specular_dir = reflect(ray.direction, hit.normal);
bool is_specular = (obj.metallic >= randomValue(rng_state));
bool is_specular = (mat.metallic >= randomValue(rng_state));
new_ray.origin = hit.position + hit.normal * 0.001;
new_ray.direction = mix(diffuse_dir, specular_dir, obj.roughness * float(is_specular));
new_ray.direction = mix(diffuse_dir, specular_dir, mat.roughness * float(is_specular));
return (new_ray);
}