mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
e74a4d5bc0
The basic idea is to use dynamically generated shaders instead of a single monolithic file + a ton of ifdefs. Instead of having to setup every aspect of it separately (like compiling shaders, setting uniforms, perfoming the actual rendering steps, the GLSL parts), we generate the GLSL on the fly, and perform the rendering at the same time. The GLSL is regenerated every frame, but the actual compiled OpenGL-level shaders are cached, which makes it fast again. Almost all logic can be in a single place. The new code is significantly more flexible, which allows us to improve the code clarity, performance and add more features easily. This commit is incomplete. It drops almost all previous code, and readds only the most important things (some of them actually buggy). The next commit will complete it - it's separate to preserve authorship information.
38 lines
397 B
Plaintext
38 lines
397 B
Plaintext
*.o
|
|
*.a
|
|
*.d
|
|
*.exe
|
|
*.pyc
|
|
.depend
|
|
|
|
/config.h
|
|
/config.mak
|
|
/config.log
|
|
/mpv
|
|
/mpv.app
|
|
/version.h
|
|
/input/input_conf.h
|
|
/tags
|
|
/TAGS
|
|
/video/out/x11_icon.inc
|
|
/demux/ebml_defs.c
|
|
/demux/ebml_types.h
|
|
/sub/osd_font.h
|
|
/player/lua/*.inc
|
|
/DOCS/man/mpv.1
|
|
/DOCS/man/mpv.aux
|
|
/DOCS/man/mpv.log
|
|
/DOCS/man/mpv.out
|
|
/DOCS/man/mpv.pdf
|
|
/DOCS/man/mpv.toc
|
|
|
|
/waf
|
|
/waf-*
|
|
/waf3-*
|
|
/build
|
|
/.waf*
|
|
/.lock-waf_*
|
|
|
|
/old_build
|
|
/Makefile
|