Add operation support in enum
Created originally on Bitbucket by realitix (Jean-Sébastien Bevilacqua)
Was already merged in Bitbucket before import, marked as merged by the import user
With this patch, the following C code works now:
typedef enum VkPipelineCacheHeaderVersion {
VK_PIPELINE_CACHE_HEADER_VERSION_ONE = 1,
VK_PIPELINE_CACHE_HEADER_VERSION_RANGE_SIZE = (VK_PIPELINE_CACHE_HEADER_VERSION_ONE - VK_PIPELINE_CACHE_HEADER_VERSION_ONE + 1),
} VkPipelineCacheHeaderVersion;
This is a small patch so you can merge it fast. I wait for your opinion about it.