Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
e48dbbf048604397ec00a2f95600e57b57634577
/
.
/
Tests
/
FindVulkan
/
Test
/
main-volk.cxx
blob: 2ec9fb48b208d1b891a3a564ccec3c8a9f0337de [
file
]
#include
<iostream>
#include
<volk/volk.h>
int
main
()
{
if
(
volkInitialize
()
!=
VK_SUCCESS
)
{
std
::
cout
<<
"volk initialization success!"
<<
std
::
endl
;
}
else
{
std
::
cout
<<
"volk initialization failure!"
<<
std
::
endl
;
}
return
0
;
}