Home
last modified time | relevance | path

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

/oneTBB/examples/parallel_for/tachyon/src/
H A Dvol.cpp299 color transcol; in scalar_volume_texture() local
301 transcol = shade_transmission(ry, hit, 1.0 - sum); in scalar_volume_texture()
303 col.r += transcol.r; /* add the transmitted ray */ in scalar_volume_texture()
304 col.g += transcol.g; /* to the diffuse and */ in scalar_volume_texture()
305 col.b += transcol.b; /* transmission total.. */ in scalar_volume_texture()
H A Dextvol.cpp324 color transcol; in ext_volume_texture() local
326 transcol = shade_transmission(ry, hit, 1.0 - sum); in ext_volume_texture()
328 col.r += transcol.r; /* add the transmitted ray */ in ext_volume_texture()
329 col.g += transcol.g; /* to the diffuse and */ in ext_volume_texture()
330 col.b += transcol.b; /* transmission total.. */ in ext_volume_texture()
H A Dshade.cpp173 color transcol; in shader() local
174 transcol = shade_transmission(incident, &hit, 1.0 - obj->tex->opacity); in shader()
175 ColorAccum(&col, &transcol); in shader()