aboutsummaryrefslogtreecommitdiff
path: root/editor/plugins/curve_editor_plugin.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2017-07-07 14:13:42 -0300
committerGitHub2017-07-07 14:13:42 -0300
commit025f3501ed524c2815938139be85fd27d1fa07f3 (patch)
tree12e9827b69516db38c045071debca40861ecf7d0 /editor/plugins/curve_editor_plugin.cpp
parent8b362b50094ccd332c6ee3d0853a6b9b49f70253 (diff)
parent566655adc1c1b25cb2cc7c905c899f78170264d8 (diff)
downloadgodot-025f3501ed524c2815938139be85fd27d1fa07f3.tar.gz
godot-025f3501ed524c2815938139be85fd27d1fa07f3.tar.zst
godot-025f3501ed524c2815938139be85fd27d1fa07f3.zip
Merge pull request #9541 from ducdetronquito/master
If it makes you guys happy...
Diffstat (limited to 'editor/plugins/curve_editor_plugin.cpp')
-rw-r--r--editor/plugins/curve_editor_plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/curve_editor_plugin.cpp b/editor/plugins/curve_editor_plugin.cpp
index c74eaf21a..2d05c8eba 100644
--- a/editor/plugins/curve_editor_plugin.cpp
+++ b/editor/plugins/curve_editor_plugin.cpp
@@ -874,7 +874,7 @@ Ref<Texture> CurvePreviewGenerator::generate(const Ref<Resource> &p_from) {
Color bg_color(0.1, 0.1, 0.1, 1.0);
for (int i = 0; i < thumbnail_size; i++) {
for (int j = 0; j < thumbnail_size; j++) {
- im.put_pixel(i, j, bg_color);
+ im.set_pixel(i, j, bg_color);
}
}
@@ -890,7 +890,7 @@ Ref<Texture> CurvePreviewGenerator::generate(const Ref<Resource> &p_from) {
// Plot point
if (y >= 0 && y < im.get_height()) {
- im.put_pixel(x, y, line_color);
+ im.set_pixel(x, y, line_color);
}
// Plot vertical line to fix discontinuity (not 100% correct but enough for a preview)
@@ -904,7 +904,7 @@ Ref<Texture> CurvePreviewGenerator::generate(const Ref<Resource> &p_from) {
y1 = y;
}
for (int ly = y0; ly < y1; ++ly) {
- im.put_pixel(x, ly, line_color);
+ im.set_pixel(x, ly, line_color);
}
}