-
Notifications
You must be signed in to change notification settings - Fork 328
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
Fixed setprop after using VkGraphicsSpy #1051
Conversation
Ubuntu with Galaxy phones verified |
So this actually fails for me. The call to adb shell setprop
I am guessing this is a difference between Samsung and Pixel devices. // setprop has slightly different semantics on different devices.
// First try to clear with escaped quotes, which will leave the property
// set as "" on some devices.
// Then clear with non-escaped quotes, this clear it on the devices that
// would have set it as "", but simply fail on others.
d.Command("shell", "setprop", "debug.vulkan.layers", "\"\"").Run(ctx)
d.Command("shell", "setprop", "debug.vulkan.layers", "").Run(ctx) |
I can't tell if it's the Go code or the phone, when it clears and you go Also i'd wait til you can confirm your S6 is the same as I feel having it prompt the |
So with the existing implementation I get |
So this is not a phone thing, I got gapid up and running from tip or tree on my Windows 10 laptop and it ran the trace and when it was done it set Made gist to test with
Both running Android Platform-Tools v26.0.0 What I don't get is for my Ubuntu version it literally fmt.prints |
I just got an S6 to test with.
|
It used to be an image but now it's an actual button
#1049
I found this actually lets me trace the Android Vulkan Tutorials part 5 and also doesn't break all other Vulkan apps.
I feel this should be verified across multiple devices/OS before merging