Enabled the fill nodes and disabled tonality.

This commit is contained in:
Relintai 2022-06-19 18:10:55 +02:00
parent f1226b3519
commit 08529315ca
2 changed files with 59 additions and 54 deletions

View File

@ -136,20 +136,20 @@ sources = [
"nodes/gradient/gradient.cpp", "nodes/gradient/gradient.cpp",
"nodes/gradient/circular_gradient.cpp", "nodes/gradient/circular_gradient.cpp",
"nodes/filter/tonality.cpp", #"nodes/filter/tonality.cpp",
#"nodes/filter/swap_channels.cpp", #"nodes/filter/swap_channels.cpp",
#"nodes/filter/quantize.cpp", #"nodes/filter/quantize.cpp",
#"nodes/filter/math.cpp", #"nodes/filter/math.cpp",
#"nodes/filter/make_tileable.cpp", #"nodes/filter/make_tileable.cpp",
#"nodes/filter/invert.cpp", #"nodes/filter/invert.cpp",
#"nodes/filter/greyscale.cpp", #"nodes/filter/greyscale.cpp",
#"nodes/filter/fill_to_uv.cpp", "nodes/filter/fill_to_uv.cpp",
#"nodes/filter/fill_to_size.cpp", "nodes/filter/fill_to_size.cpp",
#"nodes/filter/fill_to_random_grey.cpp", "nodes/filter/fill_to_random_grey.cpp",
#"nodes/filter/fill_to_random_color.cpp", "nodes/filter/fill_to_random_color.cpp",
#"nodes/filter/fill_to_position.cpp", "nodes/filter/fill_to_position.cpp",
#"nodes/filter/fill_to_color.cpp", "nodes/filter/fill_to_color.cpp",
#"nodes/filter/fill_channel.cpp", "nodes/filter/fill_channel.cpp",
#"nodes/filter/emboss.cpp", #"nodes/filter/emboss.cpp",
#"nodes/filter/decompose.cpp", #"nodes/filter/decompose.cpp",
#"nodes/filter/combine.cpp", #"nodes/filter/combine.cpp",

View File

@ -139,6 +139,7 @@ SOFTWARE.
#include "nodes/filter/combine.h" #include "nodes/filter/combine.h"
#include "nodes/filter/decompose.h" #include "nodes/filter/decompose.h"
#include "nodes/filter/emboss.h" #include "nodes/filter/emboss.h"
*/
#include "nodes/filter/fill_channel.h" #include "nodes/filter/fill_channel.h"
#include "nodes/filter/fill_to_color.h" #include "nodes/filter/fill_to_color.h"
#include "nodes/filter/fill_to_position.h" #include "nodes/filter/fill_to_position.h"
@ -146,14 +147,15 @@ SOFTWARE.
#include "nodes/filter/fill_to_random_grey.h" #include "nodes/filter/fill_to_random_grey.h"
#include "nodes/filter/fill_to_size.h" #include "nodes/filter/fill_to_size.h"
#include "nodes/filter/fill_to_uv.h" #include "nodes/filter/fill_to_uv.h"
/*
#include "nodes/filter/greyscale.h" #include "nodes/filter/greyscale.h"
#include "nodes/filter/invert.h" #include "nodes/filter/invert.h"
#include "nodes/filter/make_tileable.h" #include "nodes/filter/make_tileable.h"
#include "nodes/filter/math.h" #include "nodes/filter/math.h"
#include "nodes/filter/quantize.h" #include "nodes/filter/quantize.h"
#include "nodes/filter/swap_channels.h" #include "nodes/filter/swap_channels.h"
*/
#include "nodes/filter/tonality.h" #include "nodes/filter/tonality.h"
*/
static _MMAlgos *_mm_algos_singleton = nullptr; static _MMAlgos *_mm_algos_singleton = nullptr;
@ -328,9 +330,10 @@ void register_material_maker_types() {
ClassDB::register_class<MMCircularGradient>(); ClassDB::register_class<MMCircularGradient>();
MMAlgos::register_node_class("Gradient", "MMCircularGradient"); MMAlgos::register_node_class("Gradient", "MMCircularGradient");
/*
ClassDB::register_class<MMTonality>(); ClassDB::register_class<MMTonality>();
MMAlgos::register_node_class("Filter", "MMTonality"); MMAlgos::register_node_class("Filter", "MMTonality");
/*
ClassDB::register_class<MMSwapChannels>(); ClassDB::register_class<MMSwapChannels>();
MMAlgos::register_node_class("Filter", "MMSwapChannels"); MMAlgos::register_node_class("Filter", "MMSwapChannels");
ClassDB::register_class<MMQuantize>(); ClassDB::register_class<MMQuantize>();
@ -344,6 +347,7 @@ void register_material_maker_types() {
ClassDB::register_class<MMGreyscale>(); ClassDB::register_class<MMGreyscale>();
MMAlgos::register_node_class("Filter", "MMGreyscale"); MMAlgos::register_node_class("Filter", "MMGreyscale");
ClassDB::register_class<MMFillToUv>(); ClassDB::register_class<MMFillToUv>();
*/
MMAlgos::register_node_class("Filter", "MMFillToUv"); MMAlgos::register_node_class("Filter", "MMFillToUv");
ClassDB::register_class<MMFillToSize>(); ClassDB::register_class<MMFillToSize>();
MMAlgos::register_node_class("Filter", "MMFillToSize"); MMAlgos::register_node_class("Filter", "MMFillToSize");
@ -357,6 +361,7 @@ void register_material_maker_types() {
MMAlgos::register_node_class("Filter", "MMFillToColor"); MMAlgos::register_node_class("Filter", "MMFillToColor");
ClassDB::register_class<MMFillChannel>(); ClassDB::register_class<MMFillChannel>();
MMAlgos::register_node_class("Filter", "MMFillChannel"); MMAlgos::register_node_class("Filter", "MMFillChannel");
/*
ClassDB::register_class<MMEmboss>(); ClassDB::register_class<MMEmboss>();
MMAlgos::register_node_class("Filter", "MMEmboss"); MMAlgos::register_node_class("Filter", "MMEmboss");
ClassDB::register_class<MMDecompose>(); ClassDB::register_class<MMDecompose>();