Skip to content

Commit

Permalink
fixes for Vulkan 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun Sivaraman committed Mar 9, 2018
1 parent 43f05fd commit c2a459a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Change Log
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-----------------------------------------------------------------------Mar-2018-----------------------------------------------------------------------------------------------------------------
09/02 - Fixed Device Tab in Vulkan for the latest Vulkan 1.1 version
- Device Sparse Properties header renamed to Device Properties, this section includes both VKPhysicalDeviceSparseProperties, VKPhysicalDevicePointClippingProperties and PushDescriptorProperties
- Features Tab also includes the new Vulkan 1.1 sub Feature i,e VkPhysicalDeviceSamplerYcbcrConversionFeatures, VkPhysicalDeviceVariablePointerFeatures along with Device Features

-----------------------------------------------------------------------Feb-2018-----------------------------------------------------------------------------------------------------------------
27/02 - Added Core and Compat profile details for OpenGL Limits Section
Expand Down
6 changes: 3 additions & 3 deletions Files/VulkanViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
RANGE1 = 100

DeviceTitle = ["Device Information", "Details"]
SparseTitle = ["Device Sparse Properties", "Value"]
SparseTitle = ["Device Properties", "Value"]
FeaturesTitle = ["Device Features", "Value"]
LimitsTitle = ["Device Limits", "Value"]
ExtensionsTitle = ["Device Extensions", "Version"]
Expand Down Expand Up @@ -105,10 +105,10 @@ def Devices(GPUname):
value1 = []
fgColor = []
for i in value:
if "0" in i:
if int(i) == 0:
value1.append("false")
fgColor.append(Const.COLOR2)
elif "1" in i:
elif int(i) == 1:
value1.append("true")
fgColor.append(Const.COLOR1)
else:
Expand Down

0 comments on commit c2a459a

Please sign in to comment.