blob: 26ae6b761b57461183f6f220d97d1d90350642ef [file] [log] [blame]
///////////////////////////////////////////////////////////////////////////////
//
// 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.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
///////////////////////////////////////////////////////////////////////////////
#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;
const char name[] = "Test device";
VkJsonAllProperties device_props;
memcpy(device_props.properties.deviceName, name, sizeof(name));
device_props.properties.limits.maxImageDimension1D = 3;
device_props.properties.limits.maxSamplerLodBias = 3.5f;
device_props.properties.limits.bufferImageGranularity = 0x1ffffffffull;
device_props.properties.limits.maxViewportDimensions[0] = 1;
device_props.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_props.formats.insert(
std::make_pair(VK_FORMAT_R8_UNORM, format_props));
device_props.formats.insert(
std::make_pair(VK_FORMAT_R8G8_UNORM, format_props));
std::string json = VkJsonAllPropertiesToJson(device_props);
std::cout << json << std::endl;
VkJsonAllProperties device_props2;
result = VkJsonAllPropertiesFromJson(json, &device_props2, &errors);
EXPECT(result);
if (!result)
std::cout << "Error: " << errors << std::endl;
EXPECT(!memcmp(&device_props.properties,
&device_props2.properties,
sizeof(device_props.properties)));
for (auto& kv : device_props.formats) {
auto it = device_props2.formats.find(kv.first);
EXPECT(it != device_props2.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;
}
}