Add (untested) Steam Link video decoding/rendering

This commit is contained in:
Cameron Gutman 2018-07-21 20:22:00 -07:00
commit ad57a55d12
7 changed files with 176 additions and 0 deletions

View file

@ -0,0 +1,3 @@
SOURCES = main.cpp
LIBS += -lSLVideo

View file

@ -0,0 +1,7 @@
#include <SLVideo.h>
int main()
{
SLVideo_CreateContext();
return 0;
}