Skip to content

Commit 93c051d

Browse files
committed
fix typo bug
1 parent 8009dab commit 93c051d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/nbl/builtin/hlsl/bxdf/fresnel.hlsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ T reflect(T I, T N, typename vector_traits<T>::scalar_type NdotI)
6262
return N * 2.0f * NdotI - I;
6363
}
6464

65-
template<typename T NBL_PRIMARY_REQUIRES(vector_traits<T>::Dimensions == 3)
65+
template<typename T NBL_PRIMARY_REQUIRES(vector_traits<T>::Dimension == 3)
6666
struct refract
6767
{
6868
using this_t = refract<T>;

0 commit comments

Comments
 (0)