Home
last modified time | relevance | path

Searched refs:fog (Results 1 – 25 of 3448) sorted by relevance

12345678910>>...138

/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/
H A Dset_effects.cpp58 Fog *fog = nullptr; in read() local
67 fog = new FogBox(); in read()
74 fog->_next = _fogs; in read()
75 _fogs = fog; in read()
95 for (Fog *fog = _fogs; fog != nullptr; fog = fog->_next) { in setupFrame() local
112 if (fog == nullptr) { in setFogColor()
116 fog->_fogColor.r = r; in setFogColor()
138 for (Fog *fog = _fogs; fog != nullptr; fog = fog->_next) { in calculateColor() local
162 Fog *fog = _fogs; in findFog() local
168 fog = fog->_next; in findFog()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/
H A Dset_effects.cpp58 Fog *fog = nullptr; in read() local
67 fog = new FogBox(); in read()
74 fog->_next = _fogs; in read()
75 _fogs = fog; in read()
95 for (Fog *fog = _fogs; fog != nullptr; fog = fog->_next) { in setupFrame() local
116 if (fog == nullptr) { in setFogColor()
120 fog->_fogColor.r = r; in setFogColor()
142 for (Fog *fog = _fogs; fog != nullptr; fog = fog->_next) { in calculateColor() local
166 Fog *fog = _fogs; in findFog() local
172 fog = fog->_next; in findFog()
[all …]
/dports/graphics/rayshade/rayshade.4.0/libray/libsurf/
H A Dfog.c30 Fog *fog; local
32 fog = (Fog *)Malloc(sizeof(Fog));
35 fog->color.r = fog->color.g = fog->color.b = 0.;
37 fog->color = *color;
39 fog->trans.r = fog->trans.g = fog->trans.b = FAR_AWAY;
41 fog->trans = *trans;
43 return fog;
50 FogApply(fog, ray, pos, dist, color) in FogApply() argument
51 Fog *fog; in FogApply()
60 atten = ExpAtten(dist, fog->trans.r);
[all …]
/dports/games/openmw/openmw-openmw-0.47.0/docs/source/reference/modding/settings/
H A Dfog.rst4 use distant fog
48 fog start distance = fog factor * (base fog start distance - fog offset * base fog end distance)
49 fog end distance = fog factor * (1.0 - fog offset) * base fog end distance
53 A negative fog start distance means that the fog starts behind the camera
56 A negative fog end distance means that the fog ends behind the camera
63 distant land fog start
72 distant land fog end
81 distant underwater fog start
90 distant underwater fog end
99 distant interior fog start
[all …]
/dports/graphics/lib3ds/lib3ds-1.3.0/lib3ds/
H A Datmosphere.c33 fog_read(Lib3dsFog *fog, Lib3dsIo *io) in fog_read() argument
43 fog->far_plane=lib3ds_io_read_float(io); in fog_read()
44 fog->far_density=lib3ds_io_read_float(io); in fog_read()
61 fog->fog_background=LIB3DS_TRUE; in fog_read()
84 fog->near_y=lib3ds_io_read_float(io); in layer_fog_read()
85 fog->far_y=lib3ds_io_read_float(io); in layer_fog_read()
86 fog->density=lib3ds_io_read_float(io); in layer_fog_read()
87 fog->flags=lib3ds_io_read_dword(io); in layer_fog_read()
93 lib3ds_io_read_rgb(io, fog->col); in layer_fog_read()
97 lib3ds_io_read_rgb(io, fog->col); in layer_fog_read()
[all …]
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/external/lib3ds-1.3.0/lib3ds/
H A Datmosphere.c33 fog_read(Lib3dsFog *fog, Lib3dsIo *io) in fog_read() argument
43 fog->far_plane=lib3ds_io_read_float(io); in fog_read()
44 fog->far_density=lib3ds_io_read_float(io); in fog_read()
61 fog->fog_background=LIB3DS_TRUE; in fog_read()
84 fog->near_y=lib3ds_io_read_float(io); in layer_fog_read()
85 fog->far_y=lib3ds_io_read_float(io); in layer_fog_read()
86 fog->density=lib3ds_io_read_float(io); in layer_fog_read()
87 fog->flags=lib3ds_io_read_dword(io); in layer_fog_read()
93 lib3ds_io_read_rgb(io, fog->col); in layer_fog_read()
97 lib3ds_io_read_rgb(io, fog->col); in layer_fog_read()
[all …]
/dports/devel/simgear/simgear-2020.3.11/simgear/scene/tgdb/
H A DGroundLightManager.cxx15 Fog* fog = new Fog; in makeLightSS() local
16 fog->setMode(Fog::EXP2); in makeLightSS()
17 ss->setAttribute(fog); in makeLightSS()
34 osg::Fog* fog; in update() local
36 fog = static_cast<osg::Fog*>(runwayLightSS in update()
38 fog->setColor(toOsg(fogColor)); in update()
40 fog = static_cast<osg::Fog*>(taxiLightSS in update()
42 fog->setColor(toOsg(fogColor)); in update()
43 fog->setDensity(updateVisitor->getTaxiFogExp2Density()); in update()
44 fog = static_cast<osg::Fog*>(groundLightSS in update()
[all …]
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgWrappers/deprecated-dotosg/osg/
H A DFog.cpp38 Fog& fog = static_cast<Fog&>(obj); in Fog_readLocalData() local
43 fog.setMode(mode); in Fog_readLocalData()
51 fog.setDensity(value); in Fog_readLocalData()
58 fog.setStart(value); in Fog_readLocalData()
65 fog.setEnd(value); in Fog_readLocalData()
77 fog.setColor(color); in Fog_readLocalData()
103 const Fog& fog = static_cast<const Fog&>(obj); in Fog_writeLocalData() local
107 fw.indent() << "start " << fog.getStart() << std::endl; in Fog_writeLocalData()
108 fw.indent() << "end " << fog.getEnd() << std::endl; in Fog_writeLocalData()
109 fw.indent() << "color " << fog.getColor() << std::endl; in Fog_writeLocalData()
[all …]
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgWrappers/deprecated-dotosg/osg/
H A DFog.cpp38 Fog& fog = static_cast<Fog&>(obj); in Fog_readLocalData() local
43 fog.setMode(mode); in Fog_readLocalData()
51 fog.setDensity(value); in Fog_readLocalData()
58 fog.setStart(value); in Fog_readLocalData()
65 fog.setEnd(value); in Fog_readLocalData()
77 fog.setColor(color); in Fog_readLocalData()
103 const Fog& fog = static_cast<const Fog&>(obj); in Fog_writeLocalData() local
107 fw.indent() << "start " << fog.getStart() << std::endl; in Fog_writeLocalData()
108 fw.indent() << "end " << fog.getEnd() << std::endl; in Fog_writeLocalData()
109 fw.indent() << "color " << fog.getColor() << std::endl; in Fog_writeLocalData()
[all …]
/dports/audio/zplugins-lv2/ZPlugins-0.2.4/ext/Soundpipe/test/t/
H A Dt_fog.c7 sp_fog *fog; member
17 SPFLOAT phs = 0, fog = 0; in t_fog() local
24 sp_fog_create(&ud.fog); in t_fog()
29 sp_fog_init(sp, ud.fog, ud.wav, ud.win, 100, 0); in t_fog()
30 ud.fog->trans = 0.9; in t_fog()
37 fog = 0; in t_fog()
39 ud.fog->spd = phs; in t_fog()
40 sp_fog_compute(sp, ud.fog, NULL, &fog); in t_fog()
41 sp_test_add_sample(tst, fog); in t_fog()
46 sp_fog_destroy(&ud.fog); in t_fog()
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/1/
H A D4.203.table12 11 11 Cumulonimbus - ground based fog beneath the lowest layer
13 12 12 Stratus - ground based fog beneath the lowest layer
14 13 13 Stratocumulus - ground based fog beneath the lowest layer
15 14 14 Cumulus - ground based fog beneath the lowest layer
16 15 15 Altostratus - ground based fog beneath the lowest layer
17 16 16 Nimbostratus - ground based fog beneath the lowest layer
18 17 17 Altocumulus - ground based fog beneath the lowest layer
19 18 18 Cirrostratus - ground based fog beneath the lowest layer
20 19 19 Cirrocumulus - ground based fog beneath the lowest layer
21 20 20 Cirrus - ground based fog beneath the lowest layer
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/0/
H A D4.203.table12 11 11 Cumulonimbus - ground based fog beneath the lowest layer
13 12 12 Stratus - ground based fog beneath the lowest layer
14 13 13 Stratocumulus - ground based fog beneath the lowest layer
15 14 14 Cumulus - ground based fog beneath the lowest layer
16 15 15 Altostratus - ground based fog beneath the lowest layer
17 16 16 Nimbostratus - ground based fog beneath the lowest layer
18 17 17 Altocumulus - ground based fog beneath the lowest layer
19 18 18 Cirrostratus - ground based fog beneath the lowest layer
20 19 19 Cirrocumulus - ground based fog beneath the lowest layer
21 20 20 Cirrus - ground based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/19/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/20/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/15/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/16/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/18/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/17/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/11/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/13/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/12/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib2/tables/14/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/12/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/11/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib2/tables/16/
H A D4.203.table13 11 11 Cumulonimbus - ground-based fog beneath the lowest layer
14 12 12 Stratus - ground-based fog beneath the lowest layer
15 13 13 Stratocumulus - ground-based fog beneath the lowest layer
16 14 14 Cumulus - ground-based fog beneath the lowest layer
17 15 15 Altostratus - ground-based fog beneath the lowest layer
18 16 16 Nimbostratus - ground-based fog beneath the lowest layer
19 17 17 Altocumulus - ground-based fog beneath the lowest layer
20 18 18 Cirrostratus - ground-based fog beneath the lowest layer
21 19 19 Cirrocumulus - ground-based fog beneath the lowest layer
22 20 20 Cirrus - ground-based fog beneath the lowest layer

12345678910>>...138