Skip to content

Commit 17bef2e

Browse files
jarrellmarkfreibold
authored andcommitted
Fix build error in rtcore_common.isph
Change uniform unsigned to uniform unsigned int
1 parent cf5a9a0 commit 17bef2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/embree4/rtcore_common.isph

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ struct RTCRayQueryContext
292292
/* Initializes an ray query context. */
293293
RTC_FORCEINLINE void rtcInitRayQueryContext(uniform RTCRayQueryContext* uniform context)
294294
{
295-
uniform unsigned l = 0;
295+
uniform unsigned int l = 0;
296296

297297
#if RTC_MAX_INSTANCE_LEVEL_COUNT > 1
298298
context->instStackSize = 0;

0 commit comments

Comments
 (0)