mirror of
https://github.com/godotengine/godot.git
synced 2024-12-09 10:09:20 +08:00
14 lines
362 B
C++
14 lines
362 B
C++
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "BitmapRef.hpp"
|
||
|
|
||
|
namespace msdfgen {
|
||
|
|
||
|
/// Saves the bitmap as an uncompressed floating-point TIFF file.
|
||
|
bool saveTiff(const BitmapConstRef<float, 1> &bitmap, const char *filename);
|
||
|
bool saveTiff(const BitmapConstRef<float, 3> &bitmap, const char *filename);
|
||
|
bool saveTiff(const BitmapConstRef<float, 4> &bitmap, const char *filename);
|
||
|
|
||
|
}
|