You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Remove empty lines around braces with the formatting script
This commit is contained in:
@@ -39,44 +39,36 @@
|
||||
#include <transcoder/basisu_transcoder.h>
|
||||
|
||||
void TextureBasisU::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_basisu_data", "data"), &TextureBasisU::set_basisu_data);
|
||||
ClassDB::bind_method(D_METHOD("get_basisu_data"), &TextureBasisU::get_data);
|
||||
ClassDB::bind_method(D_METHOD("import"), &TextureBasisU::import);
|
||||
|
||||
ADD_PROPERTY(PropertyInfo(Variant::PACKED_BYTE_ARRAY, "basisu_data"), "set_basisu_data", "get_basisu_data");
|
||||
|
||||
};
|
||||
|
||||
int TextureBasisU::get_width() const {
|
||||
|
||||
return tex_size.x;
|
||||
};
|
||||
|
||||
int TextureBasisU::get_height() const {
|
||||
|
||||
return tex_size.y;
|
||||
};
|
||||
|
||||
RID TextureBasisU::get_rid() const {
|
||||
|
||||
return texture;
|
||||
};
|
||||
|
||||
|
||||
bool TextureBasisU::has_alpha() const {
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
void TextureBasisU::set_flags(uint32_t p_flags) {
|
||||
|
||||
flags = p_flags;
|
||||
RenderingServer::get_singleton()->texture_set_flags(texture, p_flags);
|
||||
};
|
||||
|
||||
uint32_t TextureBasisU::get_flags() const {
|
||||
|
||||
return flags;
|
||||
};
|
||||
|
||||
@@ -95,12 +87,10 @@ void TextureBasisU::set_basisu_data(const Vector<uint8_t>& p_data) {
|
||||
Image::Format imgfmt;
|
||||
|
||||
if (OS::get_singleton()->has_feature("s3tc")) {
|
||||
|
||||
format = basist::cTFBC3; // get this from renderer
|
||||
imgfmt = Image::FORMAT_DXT5;
|
||||
|
||||
} else if (OS::get_singleton()->has_feature("etc2")) {
|
||||
|
||||
format = basist::cTFETC2;
|
||||
imgfmt = Image::FORMAT_ETC2_RGBA8;
|
||||
};
|
||||
@@ -126,7 +116,6 @@ void TextureBasisU::set_basisu_data(const Vector<uint8_t>& p_data) {
|
||||
int ofs = 0;
|
||||
tr.start_transcoding(ptr, size);
|
||||
for (int i=0; i<info.m_total_levels; i++) {
|
||||
|
||||
basist::basisu_image_level_info level;
|
||||
tr.get_image_level_info(ptr, size, level, 0, i);
|
||||
|
||||
@@ -214,19 +203,16 @@ Error TextureBasisU::import(const Ref<Image>& p_img) {
|
||||
|
||||
|
||||
Vector<uint8_t> TextureBasisU::get_basisu_data() const {
|
||||
|
||||
return data;
|
||||
};
|
||||
|
||||
TextureBasisU::TextureBasisU() {
|
||||
|
||||
flags = FLAGS_DEFAULT;
|
||||
texture = RenderingServer::get_singleton()->texture_create();
|
||||
};
|
||||
|
||||
|
||||
TextureBasisU::~TextureBasisU() {
|
||||
|
||||
RenderingServer::get_singleton()->free(texture);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user