SimpleDirectMediaLayer.jl
SimpleDirectMediaLayer.jl copied to clipboard
SDL2
I tried the latest version of SimpleDirectMediaLayer. When I try to run the example I only get a black Window and a lot of warnings in the console. `ALSA lib...
Fix installation instructions.
pretty ez thanks m9 https://wiki.libsdl.org/SDL_GetTicks64
fix #60
https://www.libsdl.org/projects/SDL_mixer/docs/SDL_mixer.html#SEC19
Made a fresh reinstall of Julia 1.5.1 on a Debian machine and after installing SimpleDirectMediaLayer.jl and ``using SimpleDirectMediaLayer`` ``SimpleDirectMediaLayer.init() `` I receive the following warning (or error) messages on the...
With the following example ``` using SimpleDirectMediaLayer const SDL2 = SimpleDirectMediaLayer SDL2.init() win = SDL2.CreateWindow("", Int32(0), Int32(0), Int32(200), Int32(100), UInt32(SDL2.WINDOW_SHOWN) ) renderer = SDL2.CreateRenderer(win, Int32(-1), UInt32(SDL2.RENDERER_ACCELERATED | SDL2.RENDERER_PRESENTVSYNC) ) SDL2.SetRenderDrawColor(renderer,...
I am using SimpleDirectMediaLayer v0.1.1 with julia version 1.1.0 The functions RenderDrawLines, RenderDrawPoints don't plot anything, and do not output any errors. Here is an example. import SimpleDirectMediaLayer const SDL2...
I just switched from Pop!_OS 19.04 to 19.10 -- A linux distro based on Ubuntu. Everything was working under 19.04 using Julia 1.3.1 I have installed all the sdl libs...
Just noticed that after upgrading to v0.2.* (so, using the JLLs), audio no longer works on Linux (I haven't tested on other OSs). The tests are passing fine, since the...