-
Notifications
You must be signed in to change notification settings - Fork 21
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
Use clamp to edge on vulkan and enable portability features #164
Conversation
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.
A couple comments and questions from me, but looks good!
9c517b1
to
cf91d26
Compare
Apologies for the silly issues here; have been travelling a lot and am quite sleep deprived. Have force-pushed a new commit that addresses each of the comments; let me know if anything is still wonky! |
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.
LGTM! Just waiting on Ralith's sign-off.
@@ -100,7 +100,7 @@ impl VulkanTexture { | |||
mag_filter, | |||
} = create_info; | |||
|
|||
let address_mode = vk::SamplerAddressMode::REPEAT; | |||
let address_mode = vk::SamplerAddressMode::CLAMP_TO_EDGE; |
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.
Shouldn't this be in the previous commit?
Some small Vulkan fixes.