godot/modules/noise/noise_texture_2d.cpp

/**************************************************************************/
/*  noise_texture_2d.cpp                                                  */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "noise_texture_2d.h"

#include "noise.h"

NoiseTexture2D::NoiseTexture2D() {}

NoiseTexture2D::~NoiseTexture2D() {}

void NoiseTexture2D::_bind_methods() {}

void NoiseTexture2D::_validate_property(PropertyInfo &p_property) const {}

void NoiseTexture2D::_set_texture_image(const Ref<Image> &p_image) {}

void NoiseTexture2D::_thread_done(const Ref<Image> &p_image) {}

void NoiseTexture2D::_thread_function(void *p_ud) {}

void NoiseTexture2D::_queue_update() {}

Ref<Image> NoiseTexture2D::_generate_texture() {}

Ref<Image> NoiseTexture2D::_modulate_with_gradient(Ref<Image> p_image, Ref<Gradient> p_gradient) {}

void NoiseTexture2D::_update_texture() {}

void NoiseTexture2D::set_noise(Ref<Noise> p_noise) {}

Ref<Noise> NoiseTexture2D::get_noise() {}

void NoiseTexture2D::set_width(int p_width) {}

void NoiseTexture2D::set_height(int p_height) {}

void NoiseTexture2D::set_invert(bool p_invert) {}

bool NoiseTexture2D::get_invert() const {}

void NoiseTexture2D::set_in_3d_space(bool p_enable) {}
bool NoiseTexture2D::is_in_3d_space() const {}

void NoiseTexture2D::set_generate_mipmaps(bool p_enable) {}

bool NoiseTexture2D::is_generating_mipmaps() const {}

void NoiseTexture2D::set_seamless(bool p_seamless) {}

bool NoiseTexture2D::get_seamless() {}

void NoiseTexture2D::set_seamless_blend_skirt(real_t p_blend_skirt) {}
real_t NoiseTexture2D::get_seamless_blend_skirt() {}

void NoiseTexture2D::set_as_normal_map(bool p_as_normal_map) {}

bool NoiseTexture2D::is_normal_map() {}

void NoiseTexture2D::set_bump_strength(float p_bump_strength) {}

float NoiseTexture2D::get_bump_strength() {}

void NoiseTexture2D::set_color_ramp(const Ref<Gradient> &p_gradient) {}

void NoiseTexture2D::set_normalize(bool p_normalize) {}

bool NoiseTexture2D::is_normalized() const {}

Ref<Gradient> NoiseTexture2D::get_color_ramp() const {}

int NoiseTexture2D::get_width() const {}

int NoiseTexture2D::get_height() const {}

RID NoiseTexture2D::get_rid() const {}

Ref<Image> NoiseTexture2D::get_image() const {}