12 lines
264 B
C
12 lines
264 B
C
#include "utils.h"
|
|
|
|
rt_result rtVkResultToRTResult(VkResult result) {
|
|
switch (result) {
|
|
case VK_SUCCESS:
|
|
return RT_SUCCESS;
|
|
case VK_ERROR_OUT_OF_HOST_MEMORY:
|
|
return RT_OUT_OF_MEMORY;
|
|
default:
|
|
return RT_UNKNOWN_ERROR;
|
|
}
|
|
} |