mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
Fix deprecated calls with Irrlicht 1.9
This commit is contained in:
parent
62e3593944
commit
66b5c08664
@ -129,7 +129,7 @@ video::ITexture *guiScalingResizeCached(video::IVideoDriver *driver,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Convert the scaled image back into a texture.
|
// Convert the scaled image back into a texture.
|
||||||
scaled = driver->addTexture(scalename, destimg, NULL);
|
scaled = driver->addTexture(scalename, destimg);
|
||||||
destimg->drop();
|
destimg->drop();
|
||||||
g_txrCache[scalename] = scaled;
|
g_txrCache[scalename] = scaled;
|
||||||
|
|
||||||
|
@ -96,9 +96,10 @@ public:
|
|||||||
if (has_been_set && std::equal(m_sent, m_sent + count, value))
|
if (has_been_set && std::equal(m_sent, m_sent + count, value))
|
||||||
return;
|
return;
|
||||||
if (is_pixel)
|
if (is_pixel)
|
||||||
services->setPixelShaderConstant(m_name, value, count);
|
services->setPixelShaderConstant(services->getPixelShaderConstantID(m_name), value, count);
|
||||||
else
|
else
|
||||||
services->setVertexShaderConstant(m_name, value, count);
|
services->setVertexShaderConstant(services->getVertexShaderConstantID(m_name), value, count);
|
||||||
|
|
||||||
std::copy(value, value + count, m_sent);
|
std::copy(value, value + count, m_sent);
|
||||||
has_been_set = true;
|
has_been_set = true;
|
||||||
}
|
}
|
||||||
|
@ -837,17 +837,16 @@ static video::IImage *createInventoryCubeImage(
|
|||||||
image = scaled;
|
image = scaled;
|
||||||
}
|
}
|
||||||
sanity_check(image->getPitch() == 4 * size);
|
sanity_check(image->getPitch() == 4 * size);
|
||||||
return reinterpret_cast<u32 *>(image->lock());
|
return reinterpret_cast<u32 *>(image->getData());
|
||||||
};
|
};
|
||||||
auto free_image = [] (video::IImage *image) -> void {
|
auto free_image = [] (video::IImage *image) -> void {
|
||||||
image->unlock();
|
|
||||||
image->drop();
|
image->drop();
|
||||||
};
|
};
|
||||||
|
|
||||||
video::IImage *result = driver->createImage(video::ECF_A8R8G8B8, {cube_size, cube_size});
|
video::IImage *result = driver->createImage(video::ECF_A8R8G8B8, {cube_size, cube_size});
|
||||||
sanity_check(result->getPitch() == 4 * cube_size);
|
sanity_check(result->getPitch() == 4 * cube_size);
|
||||||
result->fill(video::SColor(0x00000000u));
|
result->fill(video::SColor(0x00000000u));
|
||||||
u32 *target = reinterpret_cast<u32 *>(result->lock());
|
u32 *target = reinterpret_cast<u32 *>(result->getData());
|
||||||
|
|
||||||
// Draws single cube face
|
// Draws single cube face
|
||||||
// `shade_factor` is face brightness, in range [0.0, 1.0]
|
// `shade_factor` is face brightness, in range [0.0, 1.0]
|
||||||
@ -906,7 +905,6 @@ static video::IImage *createInventoryCubeImage(
|
|||||||
{0, 5}, {1, 5},
|
{0, 5}, {1, 5},
|
||||||
});
|
});
|
||||||
|
|
||||||
result->unlock();
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@ video::IImage* SGUITTGlyph::createGlyphImage(const FT_Bitmap& bits, video::IVide
|
|||||||
|
|
||||||
// Load the monochrome data in.
|
// Load the monochrome data in.
|
||||||
const u32 image_pitch = image->getPitch() / sizeof(u16);
|
const u32 image_pitch = image->getPitch() / sizeof(u16);
|
||||||
u16* image_data = (u16*)image->lock();
|
u16* image_data = (u16*)image->getData();
|
||||||
u8* glyph_data = bits.buffer;
|
u8* glyph_data = bits.buffer;
|
||||||
|
|
||||||
for (s32 y = 0; y < (s32)bits.rows; ++y)
|
for (s32 y = 0; y < (s32)bits.rows; ++y)
|
||||||
@ -119,7 +119,6 @@ video::IImage* SGUITTGlyph::createGlyphImage(const FT_Bitmap& bits, video::IVide
|
|||||||
}
|
}
|
||||||
image_data += image_pitch;
|
image_data += image_pitch;
|
||||||
}
|
}
|
||||||
image->unlock();
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,7 +132,7 @@ video::IImage* SGUITTGlyph::createGlyphImage(const FT_Bitmap& bits, video::IVide
|
|||||||
// Load the grayscale data in.
|
// Load the grayscale data in.
|
||||||
const float gray_count = static_cast<float>(bits.num_grays);
|
const float gray_count = static_cast<float>(bits.num_grays);
|
||||||
const u32 image_pitch = image->getPitch() / sizeof(u32);
|
const u32 image_pitch = image->getPitch() / sizeof(u32);
|
||||||
u32* image_data = (u32*)image->lock();
|
u32* image_data = (u32*)image->getData();
|
||||||
u8* glyph_data = bits.buffer;
|
u8* glyph_data = bits.buffer;
|
||||||
for (s32 y = 0; y < (s32)bits.rows; ++y)
|
for (s32 y = 0; y < (s32)bits.rows; ++y)
|
||||||
{
|
{
|
||||||
@ -145,7 +144,6 @@ video::IImage* SGUITTGlyph::createGlyphImage(const FT_Bitmap& bits, video::IVide
|
|||||||
}
|
}
|
||||||
glyph_data += bits.pitch;
|
glyph_data += bits.pitch;
|
||||||
}
|
}
|
||||||
image->unlock();
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user