• What are you working on? v67 - March 2017
    3,527 replies, posted
[QUOTE=paindoc;52219209]crash during release mode.[/QUOTE] I pretty much always run in release to avoid dealing with the situation where debug works and release doesn't and you have no idea why.
[QUOTE=alien_guy;52224400]I pretty much always run in release to avoid dealing with the situation where debug works and release doesn't and you have no idea why.[/QUOTE] I can't remember what it is but there's some compiler setting or warning level to indicate uninitialised variables. I've come to always set an initial value since chasing one too many bugs caused by this. If the cost of setting the initial value is too great you've done something wrong. Plus by now any optimisers should optimise out an unused initial value, or setting to a value that isn't used. For example the following [code] int foo = 1; ... foo = 10; ... [/code] Would become equivalent to [code] ... int foo = 10; ... [/code]
[QUOTE=Facepalm Man;52224558]I can't remember what it is but there's some compiler setting or warning level to indicate uninitialised variables. I've come to always set an initial value since chasing one too many bugs caused by this. If the cost of setting the initial value is too great you've done something wrong. Plus by now any optimisers should optimise out an unused initial value, or setting to a value that isn't used. For example the following [code] int foo = 1; ... foo = 10; ... [/code] Would become equivalent to [code] ... int foo = 10; ... [/code][/QUOTE] I still don't quite understand why people don't initialize variables to what they're going to be from the start, either. It makes more sense to me to set it to whatever you're going to need from the get-go and be done with it. Needless to say it makes following certain tutorials (as I'm still learning) somewhat more difficult to follow.
[QUOTE=Zero-Point;52224586]I still don't quite understand why people don't initialize variables to what they're going to be from the start, either. It makes more sense to me to set it to whatever you're going to need from the get-go and be done with it. Needless to say it makes following certain tutorials (as I'm still learning) somewhat more difficult to follow.[/QUOTE] Usually it's done in cases when the variable needs to be in an outer scope when the data it gets set to is in an inner scope.
[QUOTE=Ott;52224623]Usually it's done in cases when the variable needs to be in an outer scope when the data it gets set to is in an inner scope.[/QUOTE] Even then, the compiler shouldn't throw a warning if the variable is initialised properly. If it's only conditionally initialised, then the better fix is to add more scopes if that's really necessary to get rid of the warning.
[QUOTE=Ott;52224623]Usually it's done in cases when the variable needs to be in an outer scope when the data it gets set to is in an inner scope.[/QUOTE] It still costs nothing measurable to just set everything to default values, and there's usually a better way to express such logic anyway. The issues I often see is that the first implementation of the code is correct, but then the code changes, for example another 'else if' is added which doesn't account for the variable and then boom. Hard to reproduce edge-case bug. Not having to initialise all variables is something I put to backwards compatibility when it actually might have mattered for performance in the 90's. And you wouldn't want old code to break would you? I often dream of a strict C++ compiler which only allows C++11 onwards standard.
Sometimes there's no good default value. [editline]13th May 2017[/editline] And sometimes it does cause something measurable to default initialize everything.
[QUOTE=WTF Nuke;52224766]Sometimes there's no good default value. [/QUOTE] Zero is usually good. Or {} for a struct. Anything is better than whatever junk your compiler uses for uninitialised values, because then you can at least debug your code consistently with release. [QUOTE] [editline]13th May 2017[/editline] And sometimes it does cause something measurable to default initialize everything.[/QUOTE] Those are a special case and not the norm. And in those cases yes, do what is necessary to ensure maximum speed but be very damn careful that your code is correct. My best advice is that assume the code is not such a bottleneck and be safe and readable first, and optimise later when you've identified the expensive parts of your code.
No arguments about it being a good idea most of the time, but I was just trying to say that backwards compatibility is not the only reason you can have uninitialized values.
[QUOTE=WTF Nuke;52224821]No arguments about it being a good idea most of the time, but I was just trying to say that backwards compatibility is not the only reason you can have uninitialized values.[/QUOTE] Fair. There's always a reason for most things still allowed in C++, but my point is in this case they're not the majority. My way of advice is to assume this would be a premature optimisation until you prove an actual bottleneck. When you know it is performance critical in your specific case then yes do whatever is necessary.
PSA: Don't update VS 2017 from 15.1 to 15.2 (26430.6) as the TeamExplorer package (does anyone actually use that?) is fucked and it will brick your install. Reinstalling also doesn't work because the package stops the install finishing.
[QUOTE=helifreak;52225087]PSA: Don't update VS 2017 from 15.1 to 15.2 (26430.6) as the TeamExplorer package (does anyone actually use that?) is fucked and it will brick your install. Reinstalling also doesn't work because the package stops the install finishing.[/QUOTE] Hasn't happened to me, what workloads do you have installed? And thanks for the input on that bug, that helps clarify quite a bit more. Also, when it comes to uninitialized values that why the "auto" keyword can be so nice, since it forces you to actually initialize the object. The only problem I have with vulkan in that regard is primarily that some of the create info structs are so huge and populated that it's [I]really[/I] easy to miss something. Looking at you, Mr. "vkGraphicsPipelineCreateInfo" ([U]10[/U] pointers to other info structs, some of which have 12-13 fields)
[QUOTE=paindoc;52225177]Hasn't happened to me, what workloads do you have installed?[/QUOTE] I had universal apps, .NET desktop, desktop C++, ASP.NET & Web, Python, C++ for Linux, and .NET Core. Got it to work after nuking the package cache in program data and unticking universal apps. Doubt it's related to the universal apps. I'd say their servers just sent a corrupted package and they didn't bother putting hash checks in place.
i have a quite strange behavior with vulkan ... on my desktop machine it runs fine... (amd 480rx) on my notebook it first shows the output in the window, then freezes the whole machine and whole screen becomes black ... (amd apu with radeon 8200) my first idea was that the driver could be outdated but nope... new one also crashes... thx amd! why dumb ? even the cube demo crashes on that machine so it must be a driver issue.
[QUOTE=Pappschachtel;52226904]i have a quite strange behavior with vulkan ... on my desktop machine it runs fine... (amd 480rx) on my notebook it first shows the output in the window, then freezes the whole machine and whole screen becomes black ... (amd apu with radeon 8200) my first idea was that the driver could be outdated but nope... new one also crashes... thx amd! why dumb ? even the cube demo crashes on that machine so it must be a driver issue.[/QUOTE] Does your GPU even support vulkan? I don't think it does.
[QUOTE=helifreak;52225087]PSA: Don't update VS 2017 from 15.1 to 15.2 (26430.6) as the TeamExplorer package (does anyone actually use that?) is fucked and it will brick your install. Reinstalling also doesn't work because the package stops the install finishing.[/QUOTE] Recently did that update path, think you got unlucky?
[QUOTE=Pappschachtel;52226904]i have a quite strange behavior with vulkan ... on my desktop machine it runs fine... (amd 480rx) on my notebook it first shows the output in the window, then freezes the whole machine and whole screen becomes black ... (amd apu with radeon 8200) my first idea was that the driver could be outdated but nope... new one also crashes... thx amd! why dumb ? even the cube demo crashes on that machine so it must be a driver issue.[/QUOTE] [QUOTE=mastersrp;52227115]Does your GPU even support vulkan? I don't think it does.[/QUOTE] list of Vulkan compatible AMD products directly from AMD's website: AMD Radeon™ R9 Series graphics AMD Radeon™ R7 Series graphics AMD Radeon™ R5 240 graphics AMD Radeon™ HD 8000 Series graphics for OEM systems (HD 8570 and up) AMD Radeon™ HD 8000M Series graphics for notebooks AMD Radeon™ HD 7000 Series graphics (HD 7730 and up AMD Radeon™ HD 7000M Series graphics for notebooks (HD 7730M and up) AMD A4/A6/A8/A10-7000 Series APUs AMD A6/A8/A10 PRO-7000 Series APUs AMD A6/A8/A10/FX™ 8000 Series APUs AMD E1/A4/A10 Micro-6000 Series APUs AMD E1/E2/A4/A6/A8-6000 Series APUs AMD A4-1200, A4-1300 and A6-1400 Series APUs AMD E1-2000, E2-3000, A4-5000, A6-5000, and A4 Pro-3000 Series APUs The Radeon 8200 probably doesn't support Vulkan even though it belongs to the 8000 series(? I can't find it listed, the 8000 series starts at 83xx afaik). I wouldn't call Pappschachtel dumb for not knowing that but I would say it answers the question. What's the exact model of APU in your notebook?
Somehow when trying a cube map skybox + sphere with skybox reflections demo last night, I managed to fuck up as hard as one possibly can: - the sphere was as big as a skybox should be, and was turned inside out so that the texture faced inwards - the skybox was tiny, and the mesh was inside out in that weird way things are when back-face culling is set incorrectly - despite making sure to make the small tweaks to the various matrices required to render, all of the input is still mirrored I'm not sure how I did that, but I think I'm going to just skip this example :v: [editline]14th May 2017[/editline] AND gpus have weird queue family setups
[QUOTE=paindoc;52227518]Somehow when trying a cube map skybox + sphere with skybox reflections demo last night, I managed to fuck up as hard as one possibly can: - the sphere was as big as a skybox should be, and was turned inside out so that the texture faced inwards - the skybox was tiny, and the mesh was inside out in that weird way things are when back-face culling is set incorrectly - despite making sure to make the small tweaks to the various matrices required to render, all of the input is still mirrored I'm not sure how I did that, but I think I'm going to just skip this example :v: [editline]14th May 2017[/editline] AND gpus have weird queue family setups[/QUOTE] I like my skyboxes to be planes.
[QUOTE=F.X Clampazzo;52227510]list of Vulkan compatible AMD products directly from AMD's website: The Radeon 8200 probably doesn't support Vulkan even though it belongs to the 8000 series(? I can't find it listed, the 8000 series starts at 83xx afaik). I wouldn't call Pappschachtel dumb for not knowing that but I would say it answers the question. What's the exact model of APU in your notebook?[/QUOTE] It seems to be really hard to tell if Vulkan/DX12 works on older gpu's (GeForce GTX 560M in my case). Everywhere I check, including [url=http://www.geforce.com/hardware/notebook-gpus/geforce-gtx-560m/specifications]Nvidia's site[/url] says I support DX12 but even on the latest drivers DX12 throws device creation errors.
[QUOTE=helifreak;52225087]PSA: Don't update VS 2017 from 15.1 to 15.2 (26430.6) as the TeamExplorer package (does anyone actually use that?) is fucked and it will brick your install. Reinstalling also doesn't work because the package stops the install finishing.[/QUOTE] Visual Studio 2017 right now is a hot steaming pile of shit, it has crashed over a 100 times for me in 2 weeks. TeamExplorer and version control is completely broken, project view glitches, and most of my plugins are crashing.
[QUOTE=Llamalord;52227788]Visual Studio 2017 right now is a hot steaming pile of shit, it has crashed over a 100 times for me in 2 weeks. TeamExplorer and version control is completely broken, project view glitches, and most of my plugins are crashing.[/QUOTE] Stuff like this fascinates me and makes me wonder what went wrong inside the team making it.
[QUOTE=Adelle Zhu;52227814]Stuff like this fascinates me and makes me wonder what went wrong inside the team making it.[/QUOTE] I think it's just the usual shit with MS' softare. You have to do some stupid shit just to install .net 3.5 on 7/8 and their ""offline"" installer still tries to connect to the internet, so you have to install using DISM with your install CD. There's also vague errors that don't tell you shit and nothing you do could ever fix them.
i was getting burned out of working on my MS Paint game, Bulletin. So I decided to take a few days off to work on something completely different [t]http://i.imgur.com/KPe3zFv.jpg[/t] [t]http://i.imgur.com/EXoZJ7kg.jpg[/t] [t]http://i.imgur.com/sbgYJ4D.jpg[/t] [t]http://i.imgur.com/2kER0LU.jpg[/t] [t]http://i.imgur.com/wzkjnep.jpg[/t] [URL="http://bonickhausen.tumblr.com/post/160307553241"]here's a short video. i don't know how to link tumblr videos.[/URL] i even gave it a name! [t]http://i.imgur.com/PcIvG0Z.jpg[/t] funny thing is, all I used on this game/artsythingy were free assets from the unity asset store, so that weird face you see all over the game is actually just a julius caesar bust i found on the first page of the free assets page on the asset store lol It'd be an action-puzzle-FPS-platformer heavily inspired by HL1 mods such as Half-Quake and Afraid of Monsters: Director's Cut. I managed to make a character controller that handles just like HL1's character controller, with air strafing and all that jazz. Had to come up with my own raycast collision system for that. But now the burnout is over and I'm back at Bulletin. I wish I had more time to work on both projects simultaneously, but oh well. It's already bad enough as it is: staying at college from 6 AM to 1 PM, then at work till 8 PM, then homework and lo and behold it's already 10 PM. I'm not getting much sleep but I believe that there's no other way around it. Gotta find some time to work on the game i guess. Anyway, enough ranting! here are some new bulletin screenshots: [t]http://i.imgur.com/d8Tx7pD.png[/t] [t]http://i.imgur.com/zKUoFyi.png[/t] [t]http://i.imgur.com/4gtYHbA.png[/t] [t]http://i.imgur.com/vakdbc7.png[/t] [t]http://i.imgur.com/dDixgFc.png[/t] [t]http://i.imgur.com/Zi9O0fn.png[/t] [t]http://i.imgur.com/xcKAL0N.png[/t] I spent the last few days optimizing the shit out of the game. One of my main problems is the fact that I want to have high quality pixel perfect realtime shadows for everything in the game, and that's not really an easy task. I also spent some time studying and writing some more dialog. I think I'm getting the hang of it. Thing is, I failed: I had established that I'd release the game's demo on June and a kickstarter campaign on July, but that's not going to happen. I'm not getting enough time to work on the game so I'm gonna have to push that back to December. So... yeah.
[QUOTE=JohnnyOnFlame;52224258]Got a better image! [t]http://i.imgur.com/8H5pvdc.png[/t] Also a star scoreboard: [img]http://i.imgur.com/cc21xEf.png[/img] I'm so glad I enrolled in this elective, learned a bunch about web apis and stuff. Had fun too.[/QUOTE] That doesn't seem right. Doesn't Berkin have more than a thousand stars from Rant?
[img]http://carp.tk/$/firefox_2017-05-14_23-09-05.png[/img] So... is that a mouth or a nose?
[QUOTE=Tamschi;52228313]That doesn't seem right. Doesn't Berkin have more than a thousand stars from Rant?[/QUOTE] Stars are only accounted if they were given by someone inside the sampled network, otherwise they're dropped. [editline]14th May 2017[/editline] Hence why the majority have very little stars.
Apparently i have a AMD E1-2500 and a ATI/AMD Radeon HD 8240 (Kabini) gfx chip. okay maybe it is not supported ? but why can i create a vulkan device set up everything and render stuff? why does the driver even allows that if it is not supported? Here is the vulkaninfo output: [CODE] =========== VULKAN INFO =========== Vulkan API Version: 1.0.46 INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_api_dump.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_core_validation.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_monitor.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_object_tracker.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_parameter_validation.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_screenshot.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_swapchain.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_threading.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_unique_objects.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_vktrace_layer.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ExplicitLayers" INFO: [loader] Code 0 : Located json file "C:\Program Files\RenderDoc\x86\renderdoc.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers" INFO: [loader] Code 0 : Located json file "C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\ImplicitLayers" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_api_dump.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_core_validation.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_monitor.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_object_tracker.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_parameter_validation.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_screenshot.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_swapchain.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_threading.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_unique_objects.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\VulkanSDK\1.0.46.0\Bin32\VkLayer_vktrace_layer.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\Program Files\RenderDoc\x86\renderdoc.json, version "1.0.0" INFO: [loader] Code 0 : Found manifest file C:\Program Files (x86)\Steam\SteamOverlayVulkanLayer.json, version "1.0.0" INFO: [loader] Code 0 : Located json file "C:\Windows\SysWow64\amd-vulkan32.json" from registry "HKEY_LOCAL_MACHINE\SOFTWARE\Khronos\Vulkan\Drivers" INFO: [loader] Code 0 : Found ICD manifest file C:\Windows\SysWow64\amd-vulkan32.json, version "1.0.0" WARNING: [loader] Code 0 : loader_icd_scan: ICD JSON C:\Windows\SysWow64\amd-vulkan32.json does not have an 'api_version' field. Instance Extensions: ==================== Instance Extensions count = 5 VK_KHR_surface : extension revision 25 VK_KHR_win32_surface : extension revision 5 VK_KHR_get_physical_device_properties2: extension revision 1 VK_KHX_external_memory_capabilities : extension revision 1 VK_EXT_debug_report : extension revision 6 Layers: count = 13 ======= VK_LAYER_LUNARG_api_dump (LunarG debug layer) Vulkan version 1.0.46, layer version 2 Layer Extensions count = 0 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_core_validation (LunarG Validation Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 1 VK_EXT_debug_report : extension revision 3 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_monitor (Execution Monitoring Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 0 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_object_tracker (LunarG Validation Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 1 VK_EXT_debug_report : extension revision 3 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_parameter_validation (LunarG Validation Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 1 VK_EXT_debug_report : extension revision 3 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_screenshot (LunarG image capture layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 0 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_swapchain (LunarG Validation Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 1 VK_EXT_debug_report : extension revision 3 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_GOOGLE_threading (Google Validation Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 1 VK_EXT_debug_report : extension revision 3 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_GOOGLE_unique_objects (Google Validation Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 0 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_vktrace (Vktrace tracing library) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 0 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_RENDERDOC_Capture (Debugging capture layer for RenderDoc) Vulkan version 1.0.0, layer version 33 Layer Extensions count = 0 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 1 VK_EXT_debug_marker : extension revision 3 VK_LAYER_VALVE_steam_overlay (Steam Overlay Layer) Vulkan version 1.0.3, layer version 1 Layer Extensions count = 0 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 VK_LAYER_LUNARG_standard_validation (LunarG Standard Validation Layer) Vulkan version 1.0.46, layer version 1 Layer Extensions count = 1 VK_EXT_debug_report : extension revision 3 Devices count = 1 GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Layer-Device Extensions count = 0 Presentable Surfaces: ===================== GPU id : 0 (AMD Radeon HD 8200 / R3 Series) Surface type : VK_KHR_win32_surface Formats: count = 20 B8G8R8A8_UNORM B8G8R8A8_SNORM B8G8R8A8_SRGB R16G16B16A16_UNORM R16G16B16A16_SNORM R16G16B16A16_SFLOAT A2R10G10B10_UNORM_PACK32 A2B10G10R10_UNORM_PACK32 B10G11R11_UFLOAT_PACK32 R8G8B8A8_UNORM A8B8G8R8_UNORM_PACK32 R8G8B8A8_SNORM R8G8B8A8_SRGB A8B8G8R8_SNORM_PACK32 A8B8G8R8_SRGB_PACK32 R5G6B5_UNORM_PACK16 B5G6R5_UNORM_PACK16 A1R5G5B5_UNORM_PACK16 R4G4B4A4_UNORM_PACK16 B4G4R4A4_UNORM_PACK16 Present Modes: count = 2 IMMEDIATE_KHR FIFO_KHR Device Properties and Extensions : ================================== GPU0 VkPhysicalDeviceProperties: =========================== apiVersion = 0x400027 (1.0.39) driverVersion = 4214784 (0x405000) vendorID = 0x1002 deviceID = 0x9838 deviceType = INTEGRATED_GPU deviceName = AMD Radeon HD 8200 / R3 Series VkPhysicalDeviceLimits: ----------------------- maxImageDimension1D = 16384 maxImageDimension2D = 16384 maxImageDimension3D = 8192 maxImageDimensionCube = 16384 maxImageArrayLayers = 2048 maxTexelBufferElements = 0xffffffff maxUniformBufferRange = 0xffffffff maxStorageBufferRange = 0xffffffff maxPushConstantsSize = 128 maxMemoryAllocationCount = 4096 maxSamplerAllocationCount = 1048576 bufferImageGranularity = 0x1 sparseAddressSpaceSize = 0xfffffffff maxBoundDescriptorSets = 32 maxPerStageDescriptorSamplers = 4294967295 maxPerStageDescriptorUniformBuffers = 4294967295 maxPerStageDescriptorStorageBuffers = 4294967295 maxPerStageDescriptorSampledImages = 4294967295 maxPerStageDescriptorStorageImages = 4294967295 maxPerStageDescriptorInputAttachments = 4294967295 maxPerStageResources = 4294967295 maxDescriptorSetSamplers = 4294967295 maxDescriptorSetUniformBuffers = 4294967295 maxDescriptorSetUniformBuffersDynamic = 8 maxDescriptorSetStorageBuffers = 4294967295 maxDescriptorSetStorageBuffersDynamic = 8 maxDescriptorSetSampledImages = 4294967295 maxDescriptorSetStorageImages = 4294967295 maxDescriptorSetInputAttachments = 4294967295 maxVertexInputAttributes = 4294967295 maxVertexInputBindings = 32 maxVertexInputAttributeOffset = 0xffffffff maxVertexInputBindingStride = 0x3fff maxVertexOutputComponents = 128 maxTessellationGenerationLevel = 64 maxTessellationPatchSize = 32 maxTessellationControlPerVertexInputComponents = 128 maxTessellationControlPerVertexOutputComponents = 128 maxTessellationControlPerPatchOutputComponents = 120 maxTessellationControlTotalOutputComponents = 4096 maxTessellationEvaluationInputComponents = 128 maxTessellationEvaluationOutputComponents = 128 maxGeometryShaderInvocations = 127 maxGeometryInputComponents = 128 maxGeometryOutputComponents = 128 maxGeometryOutputVertices = 1024 maxGeometryTotalOutputComponents = 16384 maxFragmentInputComponents = 128 maxFragmentOutputAttachments = 8 maxFragmentDualSrcAttachments = 1 maxFragmentCombinedOutputResources = 4294967295 maxComputeSharedMemorySize = 0x8000 maxComputeWorkGroupCount[0] = 65535 maxComputeWorkGroupCount[1] = 65535 maxComputeWorkGroupCount[2] = 65535 maxComputeWorkGroupInvocations = 1024 maxComputeWorkGroupSize[0] = 1024 maxComputeWorkGroupSize[1] = 1024 maxComputeWorkGroupSize[2] = 1024 subPixelPrecisionBits = 8 subTexelPrecisionBits = 8 mipmapPrecisionBits = 8 maxDrawIndexedIndexValue = 4294967295 maxDrawIndirectCount = 4294967295 maxSamplerLodBias = 15.996094 maxSamplerAnisotropy = 16.000000 maxViewports = 16 maxViewportDimensions[0] = 16384 maxViewportDimensions[1] = 16384 viewportBoundsRange[0] =-32768.000000 viewportBoundsRange[1] = 32767.000000 viewportSubPixelBits = 8 minMemoryMapAlignment = 64 minTexelBufferOffsetAlignment = 0x1 minUniformBufferOffsetAlignment = 0x10 minStorageBufferOffsetAlignment = 0x4 minTexelOffset =-64 maxTexelOffset = 63 minTexelGatherOffset =-32 maxTexelGatherOffset = 31 minInterpolationOffset =-2.000000 maxInterpolationOffset = 2.000000 subPixelInterpolationOffsetBits = 8 maxFramebufferWidth = 16384 maxFramebufferHeight = 16384 maxFramebufferLayers = 2048 framebufferColorSampleCounts = 15 framebufferDepthSampleCounts = 15 framebufferStencilSampleCounts = 15 framebufferNoAttachmentsSampleCounts = 15 maxColorAttachments = 8 sampledImageColorSampleCounts = 15 sampledImageDepthSampleCounts = 15 sampledImageStencilSampleCounts = 15 sampledImageIntegerSampleCounts = 15 storageImageSampleCounts = 15 maxSampleMaskWords = 1 timestampComputeAndGraphics = 1 timestampPeriod = 10.000000 maxClipDistances = 8 maxCullDistances = 8 maxCombinedClipAndCullDistances = 8 discreteQueuePriorities = 2 pointSizeRange[0] = 0.000000 pointSizeRange[1] = 8191.875000 lineWidthRange[0] = 0.000000 lineWidthRange[1] = 8191.875000 pointSizeGranularity = 0.125000 lineWidthGranularity = 0.125000 strictLines = 0 standardSampleLocations = 1 optimalBufferCopyOffsetAlignment = 0x1 optimalBufferCopyRowPitchAlignment = 0x1 nonCoherentAtomSize = 0x80 VkPhysicalDeviceSparseProperties: --------------------------------- residencyStandard2DBlockShape = 1 residencyStandard2DMultisampleBlockShape = 0 residencyStandard3DBlockShape = 0 residencyAlignedMipSize = 0 residencyNonResidentStrict = 1 Device Extensions count = 9 VK_KHR_sampler_mirror_clamp_to_edge : extension revision 1 VK_KHR_swapchain : extension revision 68 VK_AMD_rasterization_order : extension revision 1 VK_AMD_shader_ballot : extension revision 1 VK_AMD_shader_trinary_minmax : extension revision 1 VK_AMD_shader_explicit_vertex_parameter: extension revision 1 VK_AMD_gcn_shader : extension revision 1 VK_AMD_draw_indirect_count : extension revision 1 VK_AMD_negative_viewport_height : extension revision 1 VkQueueFamilyProperties[0]: =========================== queueFlags = GRAPHICS | COMPUTE | TRANSFER | SPARSE queueCount = 1 timestampValidBits = 64 minImageTransferGranularity = (1, 1, 1) VkQueueFamilyProperties[1]: =========================== queueFlags = COMPUTE | TRANSFER queueCount = 8 timestampValidBits = 64 minImageTransferGranularity = (1, 1, 1) VkQueueFamilyProperties[2]: =========================== queueFlags = TRANSFER | SPARSE queueCount = 2 timestampValidBits = 64 minImageTransferGranularity = (8, 8, 8) VkPhysicalDeviceMemoryProperties: ================================= memoryTypeCount = 4 memoryTypes[0] : heapIndex = 0 propertyFlags = 0x1: VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT memoryTypes[1] : heapIndex = 2 propertyFlags = 0x6: VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT VK_MEMORY_PROPERTY_HOST_COHERENT_BIT memoryTypes[2] : heapIndex = 1 propertyFlags = 0x7: VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT VK_MEMORY_PROPERTY_HOST_COHERENT_BIT memoryTypes[3] : heapIndex = 2 propertyFlags = 0xe: VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT VK_MEMORY_PROPERTY_HOST_COHERENT_BIT VK_MEMORY_PROPERTY_HOST_CACHED_BIT memoryHeapCount = 3 memoryHeaps[0] : size = 268435456 (0x10000000) (256.00 MiB) flags: VK_MEMORY_HEAP_DEVICE_LOCAL_BIT memoryHeaps[1] : size = 268435456 (0x10000000) (256.00 MiB) flags: VK_MEMORY_HEAP_DEVICE_LOCAL_BIT memoryHeaps[2] : size = 805306368 (0x30000000) (768.00 MiB) flags: None VkPhysicalDeviceFeatures: ========================= robustBufferAccess = 1 fullDrawIndexUint32 = 1 imageCubeArray = 1 independentBlend = 1 geometryShader = 1 tessellationShader = 1 sampleRateShading = 1 dualSrcBlend = 1 logicOp = 1 multiDrawIndirect = 1 drawIndirectFirstInstance = 1 depthClamp = 1 depthBiasClamp = 1 fillModeNonSolid = 1 depthBounds = 1 wideLines = 1 largePoints = 1 textureCompressionETC2 = 0 textureCompressionASTC_LDR = 0 textureCompressionBC = 1 occlusionQueryPrecise = 1 pipelineStatisticsQuery = 1 vertexSideEffects = 1 tessellationSideEffects = 1 geometrySideEffects = 1 shaderImageGatherExtended = 1 shaderStorageImageExtendedFormats = 1 shaderStorageImageMultisample = 1 shaderStorageImageReadWithoutFormat = 1 shaderStorageImageWriteWithoutFormat = 1 shaderUniformBufferArrayDynamicIndexing = 1 shaderSampledImageArrayDynamicIndexing = 1 shaderStorageBufferArrayDynamicIndexing = 1 shaderStorageImageArrayDynamicIndexing = 1 shaderClipDistance = 1 shaderCullDistance = 1 shaderFloat64 = 1 shaderInt64 = 1 shaderInt16 = 0 shaderResourceResidency = 0 shaderResourceMinLod = 0 alphaToOne = 0 sparseBinding = 0 sparseResidencyBuffer = 0 sparseResidencyImage2D = 0 sparseResidencyImage3D = 0 sparseResidency2Samples = 0 sparseResidency4Samples = 0 sparseResidency8Samples = 0 sparseResidency16Samples = 0 sparseResidencyAliased = 0 variableMultisampleRate = 1 inheritedQueries = 1 Format Properties: ================== FORMAT_UNDEFINED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R4G4_UNORM_PACK8: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_R4G4B4A4_UNORM_PACK16: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_B4G4R4A4_UNORM_PACK16: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_R5G6B5_UNORM_PACK16: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_B5G6R5_UNORM_PACK16: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_R5G5B5A1_UNORM_PACK16: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_B5G5R5A1_UNORM_PACK16: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_A1R5G5B5_UNORM_PACK16: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_R8_UNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8_SNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8_UINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8_SINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8_SRGB: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8_UNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8_SNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8_UINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8_SINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8_SRGB: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8_UNORM: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8_SNORM: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8_UINT: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8_SINT: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8_SRGB: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8_UNORM: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8_SNORM: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8_UINT: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8_SINT: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8_SRGB: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8A8_UNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8B8A8_SNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8B8A8_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8A8_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R8G8B8A8_UINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8B8A8_SINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R8G8B8A8_SRGB: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_B8G8R8A8_UNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_B8G8R8A8_SNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_B8G8R8A8_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8A8_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_B8G8R8A8_UINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_B8G8R8A8_SINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_B8G8R8A8_SRGB: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A8B8G8R8_UNORM_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A8B8G8R8_SNORM_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A8B8G8R8_USCALED_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_A8B8G8R8_SSCALED_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_A8B8G8R8_UINT_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A8B8G8R8_SINT_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A8B8G8R8_SRGB_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2R10G10B10_UNORM_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2R10G10B10_SNORM_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2R10G10B10_USCALED_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_A2R10G10B10_SSCALED_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_A2R10G10B10_UINT_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2R10G10B10_SINT_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2B10G10R10_UNORM_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2B10G10R10_SNORM_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2B10G10R10_USCALED_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_A2B10G10R10_SSCALED_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_A2B10G10R10_UINT_PACK32: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_A2B10G10R10_SINT_PACK32: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16_UNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16_SNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16_UINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16_SINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16_SFLOAT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16G16_UNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16G16_SNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16G16_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16_UINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16G16_SINT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16G16_SFLOAT: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT optimalTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT VK_FORMAT_FEATURE_BLIT_SRC_BIT VK_FORMAT_FEATURE_BLIT_DST_BIT VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT bufferFeatures FormatFeatureFlags: VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT FORMAT_R16G16B16_UNORM: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16B16_SNORM: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16B16_USCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16B16_SSCALED: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16B16_UINT: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16B16_SINT: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16B16_SFLOAT: linearTiling FormatFeatureFlags: None optimalTiling FormatFeatureFlags: None bufferFeatures FormatFeatureFlags: None FORMAT_R16G16B16A16_UNORM: linearTiling FormatFeatureFlags: VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT VK_F
Because the driver doesn't know that it's not working, as far as it knows it works, except clearly it doesn't. Driver problems are hell imo, especially with older hardware.
[QUOTE=cartman300;52228329][img]http://carp.tk/$/firefox_2017-05-14_23-09-05.png[/img] So... is that a mouth or a nose?[/QUOTE] yes
Sorry, you need to Log In to post a reply to this thread.