108 lines
3.9 KiB
C++
108 lines
3.9 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
|
// Copyright (c) 2015-2016 Valve Corporation
|
|
// Copyright (c) 2015-2016 LunarG, Inc.
|
|
// Copyright (c) 2015-2016 Google, Inc.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and/or associated documentation files (the "Materials"), to
|
|
// deal in the Materials without restriction, including without limitation the
|
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
// sell copies of the Materials, and to permit persons to whom the Materials are
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice(s) and this permission notice shall be included in
|
|
// all copies or substantial portions of the Materials.
|
|
//
|
|
// THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
//
|
|
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE
|
|
// USE OR OTHER DEALINGS IN THE MATERIALS.
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "vkjson.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <iostream>
|
|
|
|
#define EXPECT(X) if (!(X)) \
|
|
ReportFailure(__FILE__, __LINE__, #X);
|
|
|
|
#define ASSERT(X) if (!(X)) { \
|
|
ReportFailure(__FILE__, __LINE__, #X); \
|
|
return 2; \
|
|
}
|
|
|
|
int g_failures;
|
|
|
|
void ReportFailure(const char* file, int line, const char* assertion) {
|
|
std::cout << file << ":" << line << ": \"" << assertion << "\" failed."
|
|
<< std::endl;
|
|
++g_failures;
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
std::string errors;
|
|
bool result = false;
|
|
|
|
VkJsonInstance instance;
|
|
instance.devices.resize(1);
|
|
VkJsonDevice& device = instance.devices[0];
|
|
|
|
const char name[] = "Test device";
|
|
memcpy(device.properties.deviceName, name, sizeof(name));
|
|
device.properties.limits.maxImageDimension1D = 3;
|
|
device.properties.limits.maxSamplerLodBias = 3.5f;
|
|
device.properties.limits.bufferImageGranularity = 0x1ffffffffull;
|
|
device.properties.limits.maxViewportDimensions[0] = 1;
|
|
device.properties.limits.maxViewportDimensions[1] = 2;
|
|
VkFormatProperties format_props = {
|
|
VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT | VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT,
|
|
VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT,
|
|
VK_FORMAT_FEATURE_BLIT_SRC_BIT | VK_FORMAT_FEATURE_BLIT_DST_BIT};
|
|
device.formats.insert(std::make_pair(VK_FORMAT_R8_UNORM, format_props));
|
|
device.formats.insert(std::make_pair(VK_FORMAT_R8G8_UNORM, format_props));
|
|
|
|
std::string json = VkJsonInstanceToJson(instance);
|
|
std::cout << json << std::endl;
|
|
|
|
VkJsonInstance instance2;
|
|
result = VkJsonInstanceFromJson(json, &instance2, &errors);
|
|
EXPECT(result);
|
|
if (!result)
|
|
std::cout << "Error: " << errors << std::endl;
|
|
const VkJsonDevice& device2 = instance2.devices.at(0);
|
|
|
|
EXPECT(!memcmp(&device.properties, &device2.properties,
|
|
sizeof(device.properties)));
|
|
for (auto& kv : device.formats) {
|
|
auto it = device2.formats.find(kv.first);
|
|
EXPECT(it != device2.formats.end());
|
|
EXPECT(!memcmp(&kv.second, &it->second, sizeof(kv.second)));
|
|
}
|
|
|
|
VkImageFormatProperties props = {0};
|
|
json = VkJsonImageFormatPropertiesToJson(props);
|
|
VkImageFormatProperties props2 = {0};
|
|
result = VkJsonImageFormatPropertiesFromJson(json, &props2, &errors);
|
|
EXPECT(result);
|
|
if (!result)
|
|
std::cout << "Error: " << errors << std::endl;
|
|
|
|
EXPECT(!memcmp(&props, &props2, sizeof(props)));
|
|
|
|
if (g_failures) {
|
|
std::cout << g_failures << " failures." << std::endl;
|
|
return 1;
|
|
} else {
|
|
std::cout << "Success." << std::endl;
|
|
return 0;
|
|
}
|
|
}
|