-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add mutable ref to Screen
in render::Target
#4
Conversation
This ensures the screen lives longer than the render target, and also makes it a little more convenient to get the color format.
Screen
in render::Target
We can’t do this. The reason why we need a
Yeah, we don’t have administrative roles. |
Do you mean that we can't change the semantics of let mut render_target = citro3d::render::Target::new(
width,
height,
&mut *top_screen,
DepthFormat::Depth24Stencil8,
)
.expect("failed to create render target");
top_screen.set_3d_enabled(false);
let render_target2 = citro3d::render::Target::new(
width,
height,
&mut *top_screen,
DepthFormat::Depth24Stencil8,
)
.expect("failed to create render target"); Also, if you call |
The double-borrowing issue isn’t with If you really want to know what I mean, try substituting The issue with compile-time checking is that the whole Gfx struct gets blocked, which means that while having a |
I've just pushed some changes that I think do exactly what you suggested, and works without any issue on my device. Do you think there's something unsound happening in that program? I do understand why we need |
It turns out, I was missing something there -_- . Yes, it is indeed safe to transform the @ian-h-chamberlain @AzureMarker We should decide which is better and adapt the APIs accordingly (for the time being, it's just this one and |
Personally, I think an API that takes an I realized from this Reddit thread that it should be possible to just use |
I'm planning on catching up on this thread soon BTW! |
Though I was thinking, wouldn’t it be better to actually hold the In other words, when we take a screen and pass it to either Still, for the thing about “a more standard API”, you should keep in mind we make the API here, and the user will only ever notice the use of |
Ok, my mind is a little blown 🤯:
I think the solution from the Reddit thread takes care of holding the Another angle that is worth considering is what the user will see when looking at our APIs. They will see that the screens are I agree that using Edit: btw, this just made me realize we should probably seal the |
I thought about this a bit more, and I think we can have an API that works in either case, but I'm not sure the extra complexity is worth it: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=a984f43064bd87b9babbe7d602e936ac As @AzureMarker pointed out, this is probably somewhat harder to read, if you are a new user wanting to plug and play the From all that, I'm inclined to say that maybe just taking a When I get a chance I will push a change to this PR to make it more consistent with the |
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.
I don’t have much time to pull this and run it locally. @AzureMarker could you give some input on what you think?
Edit: Also, in general, we need a lot of comments. This stuff isn't easy to understand even if the API is nicely designed.
Oops, sorry, I requested review on the wrong PR. I think I'll revisit this one once rust3ds/ctru-rs#76 is settled |
Well, it's time for revisiting! The objective is to handle the |
Sorry, I've been a bit inactive lately but I've just pushed some updates based on the feedback! Let me know what you think and hopefully we can get this into place. |
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.
Other than the few things already noted, I find this PR ready to be merged. We can then work on multiple PRs for the different features.
Guess I'll go ahead and merge this to start working on the next stuf |
Closes #3
I think this addresses the issues described there, as the
Screen
must outlive therender::Target
now, and cannot be modified while theTarget
is alive. I opted to use a plain&mut
instead ofRefMut
as I think it is a little more "standard" and should also continue to work even if we change semantics ofGfx
in the future.CC @Meziu since I guess I can't add you as a reviewer for some reason