Gpu cleanup

This commit is contained in:
luboslenco
2025-06-19 19:55:16 +02:00
parent be6eaf1327
commit a7df5974ae
116 changed files with 2034 additions and 2211 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
type float_node_t = {
base?: logic_node_t;
value?: f32;
image?: iron_gpu_texture_t;
image?: gpu_texture_t;
};
function float_node_create(raw: ui_node_t, args: f32_array_t): float_node_t {
@@ -25,7 +25,7 @@ function float_node_get(self: float_node_t, from: i32): logic_node_value_t {
}
}
function float_node_get_as_image(self: float_node_t, from: i32): iron_gpu_texture_t {
function float_node_get_as_image(self: float_node_t, from: i32): gpu_texture_t {
if (self.base.inputs.length > 0) {
return logic_node_input_get_as_image(self.base.inputs[0]);
}