Go to the source code of this file.
◆ ACQUIRE_PROC
| #define ACQUIRE_PROC |
( |
|
name, |
|
|
|
context |
|
) |
| |
Value: if (!(
name = AcquireProc(
"vk" #
name, context))) { \
return false; \
}
Definition at line 11 of file vulkan_proc_table.cc.
12 { \
13 return false; \
14 }
◆ ACQUIRE_PROC_EITHER
| #define ACQUIRE_PROC_EITHER |
( |
|
name, |
|
|
|
name2, |
|
|
|
context |
|
) |
| |
Value: if (!(
name = AcquireProc(
"vk" #
name, context)) && \
!(name2 = AcquireProc("vk" #name2, context))) { \
return false; \
}
Definition at line 16 of file vulkan_proc_table.cc.
18 { \
19 return false; \
20 }