Doeke Wartena
Doeke Wartena
@aphid91 I have limited time, but can you try to call `gl_nearest_for_texture` for your `target` PGraphics? ``` public void gl_nearest_for_texture(PImage image) { PGL pgl = beginPGL(); Texture image_tex = ((PGraphicsOpenGL)g).getTexture(image);...
Would it make sense to dop ALPHA from processing?
yeah sorry, it happens with that one, but I posted in the wrong repository by accident.
Makes me wonder if you could fake a windows update. Since windows so often installs software on a reboot...
Ok, I figured something out. ```java int LINEAR = 3; int BILINEAR = 4; int sampling = (frameCount & 1) == 0 ? BILINEAR : LINEAR; gl_texture(passes[3]).usingMipmaps(true, sampling); ``` Switching...
I have to agree that this is a huge step back. For now I open OBS to see all the available options there.
I looked into the old source, this is removed: ```java ArrayList configList = new ArrayList(); for (String device: devices) { ArrayList resolutions = listResolutions(sourceName, propertyName, device); if (0 < resolutions.size())...
Not sure if the webcam has anything to do with it, cause this results in an array with only zero's as well: ```java PGraphics pg; public void settings() { size(512,...
I will check soon, I have the video files on a different pc with a different OS in a different location. And I guess the issue is format specific or...
Issue is still there, I will send the video over email, since it was for a client, and I don't want to expose it to the whole world.