aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-10-29 08:30:26 +0200
committerdec05eba <dec05eba@protonmail.com>2022-10-29 08:30:26 +0200
commit0f8407d94eef1a4f126e1b08370160307b925ed4 (patch)
treebdac3db5d3c4c5db6881f0b2d1634e9537caa4b7
parent7ff679769bf6bc49619b19da00772a88758827e5 (diff)
Update info about x11
-rw-r--r--README.md6
-rw-r--r--src/main.cpp4
2 files changed, 3 insertions, 7 deletions
diff --git a/README.md b/README.md
index c75d463..df987c0 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,17 @@
-A virtual reality video player for Linux running X11, based on Valve's openvr `hellovr_opengl` sample code: https://github.com/ValveSoftware/openvr/tree/master/samples
+A virtual reality video player for Linux, based on Valve's openvr `hellovr_opengl` sample code: https://github.com/ValveSoftware/openvr/tree/master/samples
Currently only works with stereo video and equirectangular cube maps (youtube 360 videos) when used for vr videos, but if the vr video player is launched with the `--plane` option then you can view
the video as a regular video in vr without depth (like a cinema).
## Note
-Might now work when using a compositor such as picom when using the glx backend.
+Might now work when using a compositor such as picom when using the glx backend (when capturing a window).
# Building
Run `./build.sh` or if you are running Arch Linux, then you can find it on aur under the name vr-video-player-git (`yay -S vr-video-player-git`).\
Dependencies needed when building using `build.sh`: `glm, glew, sdl2, openvr, libx11, libxcomposite, libxfixes, libmpv`.
# How to use
-vr-video-player has two options. Either capture a window and view it in vr or a work-in-progress built-in mpv option.
+vr-video-player has two options. Either capture a window and view it in vr (works only on x11) or a work-in-progress built-in mpv option.
# Using the built-in video player
To play a video with the built-in mpv player, run vr-video-player like so:
```
diff --git a/src/main.cpp b/src/main.cpp
index 8e74185..c4ef3bb 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -65,10 +65,6 @@
#include <thread>
#include <mutex>
-#ifndef _countof
-#define _countof(x) (sizeof(x)/sizeof((x)[0]))
-#endif
-
static bool g_bPrintf = true;
enum class ViewMode {