Search found 110 matches

by Menno
Tue May 14, 2019 15:00
Forum: Problems? Bugs? Solutions!
Topic: Optimalization (something like a problem with advanced output)
Replies: 11
Views: 19806

Re: Optimalization (something like a problem with advanced output)

Resolume's output system is single threaded and processes outputs sequentially. That means it's using a single cpu core and only processes a single output at the same time, one after another. This causes these hard to interpret situations when measuring average utilization over a set amount of time,...
by Menno
Tue May 14, 2019 11:49
Forum: Developers Developers Developers
Topic: how do i debug an FFGL?
Replies: 14
Views: 28453

Re: how do i debug an FFGL?

alternatively: in visual studio you can edit your plugin's property pages to launch arena. right click the project > properties > Debugging fill in the command to target the arena executable fill in the working directory to be arena's executable directory this way you can f5 your plugin project and ...
by Menno
Fri Mar 22, 2019 10:36
Forum: Developers Developers Developers
Topic: Let's talk about text... (FF_TYPE_TEXT)
Replies: 7
Views: 13390

Re: Let's talk about text... (FF_TYPE_TEXT)

I dont think there's any host who's going to write directly into the returned char pointer because no buffer size is exposed and thus writing to it would be terribly unsafe. Therefore it's safe to tell the compiler that it's all good and use a const_cast< char* >
by Menno
Thu Mar 21, 2019 18:45
Forum: General Chat
Topic: FPS variations
Replies: 3
Views: 6074

Re: FPS variations

If it's a thermal issue then the composition setting's framerate setting may help you in stabilizing the fps. You'll have to figure out how much it can run without ever throttling but you could try setting it to 30 and then see if it still drops down to 20. If it does then you can set it to 20 and t...
by Menno
Thu Mar 21, 2019 18:29
Forum: Developers Developers Developers
Topic: Let's talk about text... (FF_TYPE_TEXT)
Replies: 7
Views: 13390

Re: Let's talk about text... (FF_TYPE_TEXT)

A ffgl plugin is not allowed to make changes to it's param's values (other than initial value) and the returned char pointers dont pass ownership over that string along with it. If you're using c++ i suggest you use the std::string class. In the SetTextParameter function you just assign the char* to...
by Menno
Mon Feb 25, 2019 12:49
Forum: Developers Developers Developers
Topic: ffgl plug-in how to write?
Replies: 9
Views: 18319

Re: ffgl plug-in how to write?

there's windows projects inside the build/windows folder the master branch of that repo has already been updated for what we will be using for Resolume 7, if you want to create a ffgl plugin for resolume 6 now you will need to use the ffgl1.5 branch. FFGL plugins are really just c++ and OpenGL so yo...
by Menno
Mon Jan 14, 2019 15:34
Forum: Problems? Bugs? Solutions!
Topic: 6.0.11 not detecting my GPU?
Replies: 7
Views: 9212

Re: 6.0.11 not detecting my GPU?

N/A just means that this statistic is not available to resolume, this does NOT mean that the gpu is not working. The problem is that it's currently not possible for resolume to know on which gpu it's running (we can get the name, but that's not enough to know which device it is). For this reason, if...
by Menno
Tue Dec 11, 2018 18:17
Forum: Problems? Bugs? Solutions!
Topic: Resolume 6, DMX, Artnet and Strip Controller
Replies: 4
Views: 4553

Re: Resolume 6, DMX, Artnet and Strip Controller

Does resolume correctly detect the nodes as well? They should show up in your right click menu on the lumiverse in the screen setup. If they dont show up you might need to change network adapters in the preferences.
by Menno
Thu Sep 20, 2018 15:55
Forum: New Features
Topic: Feature Request: 16bit DMX support
Replies: 11
Views: 16061

Re: Feature Request: 16bit DMX support

16-bit DMX is on our backlog but sadly not planned for anywhere in the near future right now.
I'm wondering though, do the dmx consoles have an option to select channel order or do they all do the same? eg can you choose rough / fine vs fine / rough?
by Menno
Mon Aug 20, 2018 16:55
Forum: Problems? Bugs? Solutions!
Topic: Arena 6 multiply blend mode fade problem
Replies: 27
Views: 31049

Re: Arena 6 multiply blend mode fade problem

You dont want alpha to be multiplied at all right? Output should be b and not a?