StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
291 B
10 lines
291 B
4 years ago
|
#pragma glslify: another_thing = require(./another, t = v = 4.0, u = uVec.x)
|
||
|
#pragma glslify: LightStruct = require(./struct)
|
||
|
|
||
|
float sibling(float a) {
|
||
|
LightStruct b = LightStruct(vec3(0), vec4(0));
|
||
|
return a * another_thing(b.color + 2.0);
|
||
|
}
|
||
|
|
||
|
#pragma glslify: export(sibling)
|