-
Notifications
You must be signed in to change notification settings - Fork 64
Ray Tracing Pipeline #820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ray Tracing Pipeline #820
Conversation
[CI]: Can one of the admins verify this patch? |
c41848f
to
7757888
Compare
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
Signed-off-by: kevyuu <[email protected]>
…when creating pipeline with SKIP_AABB and SKIP_BUILT_IN_PRIMITVE flags enabled
Done |
Done. |
uint32_t2 operator()() | ||
{ | ||
uint32_t LCG_A = 1664525u; | ||
uint32_t LCG_C = 1013904223u; | ||
state = (LCG_A * state + LCG_C); | ||
state &= 0x00FFFFFF; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you returning vector<uint32_t,2>
?
Also did you mean to clear your state's highest byte?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kevyuu I changed it to return uint32_t
, I need the answer on the last question
679304c
into
Devsh-Graphics-Programming:master
Description
Implement Ray Tracing Pipeline
Testing
Using example_tests
TODO list: