Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. const char *debugLayers[9] =
  2. {
  3. "VK_LAYER_GOOGLE_unique_objects",
  4. "VK_LAYER_LUNARG_api_dump",
  5. "VK_LAYER_LUNARG_device_limits",
  6. "VK_LAYER_LUNARG_core_validation",
  7. "VK_LAYER_LUNARG_image",
  8. "VK_LAYER_LUNARG_object_tracker",
  9. "VK_LAYER_LUNARG_parameter_validation",
  10. "VK_LAYER_LUNARG_swapchain",
  11. "VK_LAYER_GOOGLE_threading"
  12. };
  13.  
  14. instanceCreateInfo.enabledLayerCount = 9;
  15. instanceCreateInfo.ppEnabledLayerNames = (const char**)debugLayers;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement