blob: 542a199a596f309d5c1055afabfd7a38c083aaa9 [file] [log] [blame]
/*-------------------------------------------------------------------------
* Vulkan CTS Framework
* --------------------
*
* Copyright (c) 2015 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.
*
*//*!
* \file
* \brief Vulkan utilites.
*//*--------------------------------------------------------------------*/
#include "vkDefs.hpp"
#include "vkStrUtil.hpp"
#include <sstream>
DE_STATIC_ASSERT(sizeof(vk::VkImageType) == sizeof(deUint32));
DE_STATIC_ASSERT(sizeof(vk::VkResult) == sizeof(deUint32));
DE_STATIC_ASSERT(sizeof(vk::VkDevice) == sizeof(void*));
DE_STATIC_ASSERT(sizeof(vk::VkBuffer) == sizeof(deUint64));
namespace vk
{
static bool isOutOfMemoryError (VkResult result)
{
return result == VK_ERROR_OUT_OF_DEVICE_MEMORY ||
result == VK_ERROR_OUT_OF_HOST_MEMORY;
}
Error::Error (VkResult error, const char* message, const char* expr, const char* file, int line)
: tcu::TestError (message, expr, file, line)
, m_error (error)
{
}
Error::Error (VkResult error, const std::string& message)
: tcu::TestError (message)
, m_error (error)
{
}
Error::~Error (void) throw()
{
}
OutOfMemoryError::OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line)
: tcu::ResourceError(message, expr, file, line)
, m_error (error)
{
DE_ASSERT(isOutOfMemoryError(error));
}
OutOfMemoryError::OutOfMemoryError (VkResult error, const std::string& message)
: tcu::ResourceError(message)
, m_error (error)
{
DE_ASSERT(isOutOfMemoryError(error));
}
OutOfMemoryError::~OutOfMemoryError (void) throw()
{
}
void checkResult (VkResult result, const char* msg, const char* file, int line)
{
if (result != VK_SUCCESS)
{
std::ostringstream msgStr;
if (msg)
msgStr << msg << ": ";
msgStr << getResultStr(result);
if (isOutOfMemoryError(result))
throw OutOfMemoryError(result, msgStr.str().c_str(), DE_NULL, file, line);
else
throw Error(result, msgStr.str().c_str(), DE_NULL, file, line);
}
}
} // vk