Hello!

In my application, I do not use eq::Client. Instead, I just use the
following:

for initialization:

EqNodeFactory eq_node_factory;
eq::init(argc, argv, &eq_node_factory));
EqConfig *eq_config = static_cast<EqConfig *>(eq::getConfig(argc, argv));
// The following code is only executed on the application node because
// eq::getConfig() does not return on other nodes
...

for deinitialization:

eq_config->exit();
eq::releaseConfig(eq_config);
eq::exit();

and in the loop:
...
eq_config->startFrame();
eq_config->finishFrame();
...


This worked with version 0.6, but with 0.9, I get segmentation faults
during eqConfig::exit().

What do I need to change?

Regards,
Martin
-- 
Computer Graphics and Multimedia Systems Group
University of Siegen, Germany
http://www.cg.informatik.uni-siegen.de/

_______________________________________________
eq-dev mailing list
[email protected]
http://www.equalizergraphics.com/cgi-bin/mailman/listinfo/eq-dev
http://www.equalizergraphics.com

Reply via email to