-
Notifications
You must be signed in to change notification settings - Fork 52
Description
The simple game engine uses the VK_EXT_attachment_feedback_loop_dynamic_state and the VK_EXT_attachment_feedback_loop_layout extension. The spec states, that theseshould only be used for GL/GLES emulation. When using the best practices validation this raises validation messages:
Validation Warning: [ BestPractices-specialuse-extension ] | MessageID = 0x675dc32e
vkCreateDevice(): Attempting to enable extension VK_EXT_attachment_feedback_loop_dynamic_state, but this extension is intended to support OpenGL and/or OpenGL ES emulation layers, and applications ported from those APIs, by adding functionality specific to those APIs and it is strongly recommended that it be otherwise avoided.
Objects: 1
[0] VkInstance 0x13a195455f0Validation Warning: [ BestPractices-specialuse-extension ] | MessageID = 0x675dc32e
vkCreateDevice(): Attempting to enable extension VK_EXT_attachment_feedback_loop_layout, but this extension is intended to support D3D emulation layers, and applications ported from D3D, by adding functionality specific to D3D and it is strongly recommended that it be otherwise avoided.
Objects: 1
[0] VkInstance 0x13a195455f0
The use of those extensions should be removed.