Skip to content

Commit

Permalink
limit bump2normal map
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmc committed May 25, 2024
1 parent 0dd9ce0 commit ffb9ad1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/textures/bump2normal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ class Bump2NormalTextureInstance final : public Texture::Instance {
_bump->evaluate(Interaction{it.uv() - make_float2(step, 0.f)}, time).x;
auto dy = _bump->evaluate(Interaction{it.uv() + make_float2(0.f, step)}, time).x -
_bump->evaluate(Interaction{it.uv() - make_float2(0.f, step)}, time).x;
n = normalize(make_float3(dx / (2.f * step), -dy / (2.f * step), 1.f));
n = normalize(make_float3(
clamp(dx / (2.f * step), -1.f, 1.f),
clamp(-dy / (2.f * step), -1.f, 1.f),
1.f));
};
return make_float4(n * 0.5f + 0.5f, 1.f);
}
Expand Down

0 comments on commit ffb9ad1

Please sign in to comment.