Fix build with Vulkan disabled and no Vulkan headers installed.
This commit is contained in:
parent
2b505b74b9
commit
4dd8f68120
14 changed files with 56 additions and 10 deletions
|
|
@ -28,6 +28,8 @@
|
|||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifdef VULKAN_ENABLED
|
||||
|
||||
#include "vulkan_context_android.h"
|
||||
|
||||
#ifdef USE_VOLK
|
||||
|
|
@ -63,3 +65,5 @@ bool VulkanContextAndroid::_use_validation_layers() {
|
|||
// On Android, we use validation layers automatically if they were explicitly linked with the app.
|
||||
return count > 0;
|
||||
}
|
||||
|
||||
#endif // VULKAN_ENABLED
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@
|
|||
#ifndef VULKAN_CONTEXT_ANDROID_H
|
||||
#define VULKAN_CONTEXT_ANDROID_H
|
||||
|
||||
#ifdef VULKAN_ENABLED
|
||||
|
||||
#include "drivers/vulkan/vulkan_context.h"
|
||||
|
||||
struct ANativeWindow;
|
||||
|
|
@ -48,4 +50,6 @@ protected:
|
|||
bool _use_validation_layers() override;
|
||||
};
|
||||
|
||||
#endif // VULKAN_ENABLED
|
||||
|
||||
#endif // VULKAN_CONTEXT_ANDROID_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue