mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-07-14 05:12:25 +08:00
+ added mentions of glew and glut requirements in the readme
+ added PKGV0013 to the list of supported packages Signed-off-by: Alexis Maiquez <almamu@almamu.com>
This commit is contained in:
parent
58be46460b
commit
03089ec35d
@ -19,6 +19,8 @@ Wallpaper Engine is a software designed by [Kristjan Skutta](https://store.steam
|
||||
- Xrandr
|
||||
- GLFW3
|
||||
- GLM
|
||||
- GLEW
|
||||
- GLUT
|
||||
- FreeImage
|
||||
|
||||
# 5. How to use
|
||||
@ -93,6 +95,6 @@ This was the first background to even be compatible with the software. And It's
|
||||
|
||||

|
||||
|
||||
# 6. Special thanks
|
||||
# 7. Special thanks
|
||||
- [RePKG](https://github.com/notscuffed/repkg) for the information on texture flags
|
||||
- [RenderDoc](https://github.com/baldurk/renderdoc) for the so helpful OpenGL debugging tool that simplified finding issues on the new OpenGL code. Seriously this tool ROCKS
|
||||
|
@ -108,7 +108,8 @@ void CPackage::validateHeader (FILE* fp)
|
||||
strcmp ("PKGV0009", pointer) != 0 &&
|
||||
strcmp ("PKGV0004", pointer) != 0 &&
|
||||
strcmp ("PKGV0005", pointer) != 0 &&
|
||||
strcmp ("PKGV0006", pointer) != 0)
|
||||
strcmp ("PKGV0006", pointer) != 0 &&
|
||||
strcmp ("PKGV0013", pointer) != 0)
|
||||
{
|
||||
delete[] pointer;
|
||||
throw std::runtime_error ("Unsupported package version");
|
||||
|
Loading…
Reference in New Issue
Block a user