mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
378 B
21 lines
378 B
/* Yes. I know what I am doing. Yes. Really. */ |
|
|
|
extern "C" { |
|
|
|
int vkCreateInstance(const void*, const void*, void*) { |
|
return -9; |
|
} |
|
|
|
int vkEnumerateInstanceExtensionProperties(const void*, void*, void*) { |
|
return -9; |
|
} |
|
|
|
int vkEnumerateInstanceLayerProperties(void*, void*) { |
|
return -9; |
|
} |
|
|
|
void(*vkGetInstanceProcAddr(void*, const void*))() { |
|
return nullptr; |
|
} |
|
|
|
}
|
|
|