Skip to content

Commit 57bf1e2

Browse files
committed
linking stuff is annoying
1 parent ebf5a4b commit 57bf1e2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,21 +69,21 @@ Review the options and change what you think is necessary. Press 'g' to generate
6969
# Using the library
7070
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.
7171

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).
7373

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.
7575

7676
***
7777

7878
# 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).
8080
* [macOS Sierra broke the iTunes plugin somehow](https://github.com/projectM-visualizer/projectm/issues/7)
8181
* 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.
8282
* 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.
8383
* Support for the missing Milkdrop waveforms to get full compatibility with Milkdrop presets.
8484
* 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).
8787
* Getting rid of CMake would be awesome. CMake sucks. [build](https://github.com/c3d/build) could be nice.
8888

8989
***

0 commit comments

Comments
 (0)