#ifndef __VK_ERROR_H__
#define __VK_ERROR_H__

#define VK_SUCCESS                      0
#define VK_ERR_GENERAL                  -1
#define VK_ERR_INVALID_ARGUMENT         -2
#define VK_ERR_ALLOCATE_MEMORY          -3
#define VK_ERR_PERMISSION_DENIED        -4

#endif // __VK_ERROR_H__
