Home
last modified time | relevance | path

Searched refs:nthreads_photons (Results 1 – 3 of 3) sorted by relevance

/dports/graphics/yafaray/libYafaRay-3.5.1/include/core_api/
H A Dscene.h193 int getNumThreadsPhotons() const { return nthreads_photons; } in getNumThreadsPhotons()
247 int nthreads_photons; variable
/dports/graphics/yafaray/libYafaRay-3.5.1/src/yafraycore/
H A Dscene.cc38 …ptr), AA_samples(1), AA_passes(1), AA_threshold(0.05), nthreads(1), nthreads_photons(1), mode(1), … in scene_t()
364 nthreads_photons = threads_photons; in setNumThreadsPhotons()
366 …if(nthreads_photons == -1) //Automatic detection of number of threads supported by this system, ta… in setNumThreadsPhotons()
370 nthreads_photons = sys_info.getNumSystemThreads(); in setNumThreadsPhotons()
371 …Y_VERBOSE << "Number of Threads supported for Photon Mapping: [" << nthreads_photons << "]." << ye… in setNumThreadsPhotons()
378 Y_PARAMS << "Using for Photon Mapping [" << nthreads_photons << "] Threads." << yendl; in setNumThreadsPhotons()
H A Denvironment.cc868 int AA_passes=1, AA_samples=1, AA_inc_samples=1, nthreads=-1, nthreads_photons=-1; in setupScene() local
952nthreads_photons = nthreads; //if no "threads_photons" parameter exists, make "nthreads_photons" e… in setupScene()
954 …params.getParam("threads_photons", nthreads_photons); // number of threads for photon mapping, -1 … in setupScene()
985 scene.setNumThreadsPhotons(nthreads_photons); in setupScene()