You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,21 +69,21 @@ Review the options and change what you think is necessary. Press 'g' to generate
69
69
# Using the library
70
70
At its core projectM is a library, [libprojectM](tree/master/src/libprojectM). This library is responsible for parsing presets, analyzing audio PCM data with beat detection and FFT, applying the preset to the audio feature data and rendering the resulting output with openGL. It can render to an openGL context or a texture.
71
71
72
-
For an example of a very simple example use of the library see the [libSDL2 sample code](blob/master/src/projectM-sdl/projectM_SDL_main.cpp).
72
+
For an example of a very simple example use of the library see the [libSDL2 sample code](src/projectM-sdl/projectM_SDL_main.cpp).
73
73
74
-
There are many other applications that make use of libprojectM that can be found in the [src](tree/master/src/) directory.
74
+
There are many other applications that make use of libprojectM that can be found in the [src](src/) directory.
75
75
76
76
***
77
77
78
78
# Todo
79
-
* Top priority has for a long time been to [port the calls from OpenGL immediate-mode (old-school) to be compatible with OpenGL ES](#11), using [vertex buffer objects](http://duriansoftware.com/joe/An-intro-to-modern-OpenGL.-Chapter-2.1:-Buffers-and-Textures.html). There's a [branch](tree/gles) and [todo list of function calls to replace](blob/gles/glES-porting.txt).
79
+
* Top priority has for a long time been to [port the calls from OpenGL immediate-mode (old-school) to be compatible with OpenGL ES](https://github.com/projectM-visualizer/projectm/issues/11), using [vertex buffer objects](http://duriansoftware.com/joe/An-intro-to-modern-OpenGL.-Chapter-2.1:-Buffers-and-Textures.html). There's a [branch](https://github.com/projectM-visualizer/projectm/tree/gles) and [todo list of function calls to replace](https://github.com/projectM-visualizer/projectm/blob/gles/glES-porting.txt).
80
80
*[macOS Sierra broke the iTunes plugin somehow](https://github.com/projectM-visualizer/projectm/issues/7)
81
81
* Build a [libSDL2-based app](https://github.com/projectM-visualizer/projectm/tree/master/src/projectM-sdl) that can use audio from any input device and visualize it. Maybe using [portaudio](http://www.portaudio.com/) or the super new [audio capture support](https://wiki.libsdl.org/SDL_OpenAudioDevice) in libSDL 2.0.5.
82
82
* Currently shader support is done via nVidia's Cg shader toolkit. This is ancient and no longer supported and very lame. Use standard OpenGL facilities for compiling and executing the shader-based presets.
83
83
* Support for the missing Milkdrop waveforms to get full compatibility with Milkdrop presets.
84
84
* Steal cool stuff from the recently-released Milkdrop source.
85
-
* Emscripten (transpile to JavaScript and use WebGL) support. [Some of the work is done](tree/emscripten) on this but it requires OpenGL ES (see item 1).
86
-
* Update the [various applications using libprojectM](tree/master/src).
85
+
* Emscripten (transpile to JavaScript and use WebGL) support. [Some of the work is done](https://github.com/projectM-visualizer/projectm/tree/emscripten) on this but it requires OpenGL ES (see item 1).
86
+
* Update the [various applications using libprojectM](src).
87
87
* Getting rid of CMake would be awesome. CMake sucks. [build](https://github.com/c3d/build) could be nice.
0 commit comments