Tom Atkinson

Results 28 comments of Tom Atkinson

@ylz-at correct idea, but wrong place. See https://github.com/KhronosGroup/Vulkan-Samples/blob/ee6c1522af8ba9b56f8416c2eedafb440f681085/framework/platform/android/android_platform.cpp#L521 This is where the android platform initializes its logger. We could remove the file logger or place an ifdef around it

Hey @ylz-at, are there any further changes to this PR?

May be too challenging to fix right now. Lets track it for future framework changes

@gpx1000 what do you think of this idea to replace instance creation? Something similar for device creation would also help simplify things

We can handle default validation layers and debug utils ``` builder .apply(enable_validation_layers) .apply(enable_debug_utils); ``` Or these can be inside a `default_sample_config` function

@gpx1000 see #458. A sample will have full control over everything. No more platform, no VulkanSample or ApiSample wrappers. So if a sample wants to not use these helpers then...

Hi @christianrauch, Can you explain this unexpected behavior in more detail? It looks like the window has resized but the render portion of the app has not adjusted to this...

Unfortunately I can not easily reproduce this issue. Some more detail on how the rendered surface behaves when interacting with the window may help me look through the platform code...

Any suggestions for a windowing library with proper Wayland support

Placed into Framework improvements but is of low priority to other tasks as this may be fixed when GLFW fixes the bug from their side. Open to implementing an SDL...