Skip to content
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

Implementation of debug markers #713

Closed
wants to merge 0 commits into from
Closed

Implementation of debug markers #713

wants to merge 0 commits into from

Conversation

krupitskas
Copy link

@krupitskas krupitskas commented Jun 11, 2020

Connections
Closes #697

Description
Hey!
It's not ready yet (not compute support here and I have some questions).
Questions:

  • Is it looks idiomatic? I saw only one example of pushing dynamic array and here we have work with text?
  • Is naming correct? I mean in wgpu it push and pop debug group, but in gfx it called begin and end debug group (should I rename?)
  • How can I test it, is it an example repository nearby or should I create an example by myself? Or may be we can create an example folder here and add "triangle" and other?

Testing
I will test after some questions will be clarified, I will record some debug markers and provide renderdoc capture.

@krupitskas krupitskas changed the title Debug marker Implementation of debug markers Jun 11, 2020
@cwfitzgerald cwfitzgerald self-requested a review June 11, 2020 06:45
Copy link
Member

@kvark kvark left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!
It's great to see this coming online, much appreciated!

Is it looks idiomatic? I saw only one example of pushing dynamic array and here we have work with text?

Yes

Is naming correct? I mean in wgpu it push and pop debug group, but in gfx it called begin and end debug group (should I rename?)

Yes. see https://gpuweb.github.io/gpuweb/#command-encoder-debug-markers

How can I test it, is it an example repository nearby or should I create an example by myself? Or may be we can create an example folder here and add "triangle" and other?

In an ideal situation, a PR links to the draft PRs in https://github.com/gfx-rs/wgpu-rs and https://github.com/gfx-rs/wgpu-native, which you made locally by overriding the dependency to your work. Then you'd be able to test it on any of the wgpu-rs examples, also ensure that API tracing/replay works. Of course requiring this for all the PRs is a bit too much, so we apply our best judgement on whether it's required on a case by case basis, as well as do it ourselves sometimes.

We are also thinking of a way to test features within this repository by relying on the API replay infrastructure.

Copy link
Member

@kvark kvark left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for updating!
A few more minor changes are needed.
Also, please try rebasing and squashing the commits. Render bundles were just merged, and they affect render commands. It's totally fine to just panic with unimplemented! for these commands when recording a bundle.

@krupitskas
Copy link
Author

krupitskas commented Jun 12, 2020

When the review will pass, I will add a new example (or just modify existing without committing it to wgpu-rs) in wgpu-rs examples folder with debug markers and after I will run it with wgpu backend and attach results here.

@@ -166,7 +188,7 @@ impl<G: GlobalIdentityHandlerFactory> Global<G> {
);

if let Some((pipeline_layout_id, follow_ups)) =
binder.provide_entry(index as usize, bind_group_id, bind_group, offsets)
binder.provide_entry(index as usize, bind_group_id, bind_group, offsets)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Eh, such stuff was modified via rustfmt

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unexpected!

Copy link
Member

@kvark kvark left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for updating!
So there is a formatting problem, plus a couple more things :)

@@ -104,6 +104,7 @@ pub struct RenderBundle {
}

unsafe impl Send for RenderBundle {}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, another rustfmt thing? We are running it locally all the time, so I'm surprised you see changes.
My guess is you are using another (some weird?) version of rustfmt. We use the stable one that comes with rustup comoponent add rustfmt. Please double-check that, there shouldn't be formatting changes outside of your code - it's all already formatted.

@@ -166,7 +188,7 @@ impl<G: GlobalIdentityHandlerFactory> Global<G> {
);

if let Some((pipeline_layout_id, follow_ups)) =
binder.provide_entry(index as usize, bind_group_id, bind_group, offsets)
binder.provide_entry(index as usize, bind_group_id, bind_group, offsets)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unexpected!

raw.begin_debug_marker(str::from_utf8(label).unwrap(), color)
},
RenderCommand::PopDebugGroup => unsafe {
assert_eq!(state.debug_scope_depth, 0, "Can't pop debug group, because number of pushed debug groups is zero!");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

Copy link
Member

@kvark kvark left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright, thank you!
We have one last thing to patch here. And please squash the commits when you are done.

pub extern "C" fn wgpu_render_pass_pop_debug_group(_pass: &mut RawPass) {
//TODO
pub unsafe extern "C" fn wgpu_render_pass_pop_debug_group(pass: &mut RawPass) {
pass.encode(&RenderCommand::PopDebugGroup {});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm surprised this compiles? should be just PopDebugGroup without {}

@krupitskas
Copy link
Author

krupitskas commented Jun 12, 2020

@kvark Can't we squash the commits when we merging into master?

@kvark
Copy link
Member

kvark commented Jun 12, 2020

@kvark Can't we squash the commits when we merging into master?

we use bors on this project, and it doesn't squash

@@ -111,6 +130,11 @@ impl<G: GlobalIdentityHandlerFactory> Global<G> {

let mut pipeline_state = PipelineState::Required;

let mut state = State {
binder: Binder::new(cmb.limits.max_bind_groups),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you forgot to remove the old binder (on line 122)

@cwfitzgerald cwfitzgerald removed their request for review June 12, 2020 22:39
@krupitskas krupitskas closed this Jun 14, 2020
bors bot added a commit that referenced this pull request Jun 16, 2020
719: Implement debug marker support r=kvark a=krupitskas

**Connections**
Closes #697

**Description**
Looks like because I've once pushed forward reset branch to my master, previous pull request #713
show that there no commits and it automatically was closed :/

**Testing**
Not tested yet


Co-authored-by: Nikita Krupitskas <[email protected]>
kvark pushed a commit to kvark/wgpu that referenced this pull request Jun 3, 2021
713: Expose texture format feature query (and update to latest wgpu) r=kvark a=Wumpf

Exposes texture format feature query from gfx-rs#1112
Updating wgpu-core led to breaking change of moving get_swap_chain_preferred_format from device to adapter.

Co-authored-by: Andreas Reich <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement debug markers
2 participants