aboutsummaryrefslogtreecommitdiff
path: root/src/tile.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix full crack texture being shown when releasing dig buttonKahrl2013-08-061-8/+8
|
* Fix crack overlay for animated texturesKahrl2013-08-051-105/+119
|
* Add texture pack selection to main menuNovatux2013-08-041-12/+5
|
* Whoever called a function parameter m_device is fired without notice.Kahrl2013-07-031-2/+2
|
* Move generateTextureFromMesh to TextureSource to fix a texture leakKahrl2013-07-031-92/+164
| | | | | | | | | | | | | TextureSource has a list of textures to delete (m_texture_trash) so this provides a proper, non-hacky way to delete RTT textures. Also, the prior, hacky way of deleting them seems to be broken (see pull request #803). To avoid header file clutter by repeating the same long list of arguments over and over again, store the arguments of generateTextureFromMesh in a struct called TextureFromMeshParams. Also fix issue #782 (Only use bilinear (and others) on item textures when settings allow it).
* Remove texture atlas / AtlasPointer, rename getTextureRaw to getTextureKahrl2013-07-021-412/+66
|
* Only add ^[forcesingle to get raw texture if atlas is usedKahrl2013-06-041-2/+5
|
* Delay deleting replaced textures (m_texture_trash)Kahrl2013-06-031-1/+15
|
* Get menu background image from selected gamePerttu Ahola2013-05-021-1/+1
|
* Fix double free, null texture dropkwolekr2013-04-121-1/+2
|
* fix inventory image texture leaksapier2013-04-071-0/+3
|
* fix huge texture leak in tiledefsapier2013-04-071-13/+44
| | | | fix minor glitches too
* fix memory leaksapier2013-04-061-1/+4
|
* Migrate to STL containers/algorithms.Ilya Zhuravlev2013-03-111-39/+39
|
* Update Copyright YearsSfan52013-02-241-1/+1
|
* Change Minetest-c55 to MinetestPilzAdam2013-02-241-1/+1
|
* Add the ability for client to check if image existsPerttu Ahola2012-11-301-0/+16
|
* Revert "Don't leak textures all over the place"Perttu Ahola2012-11-251-28/+12
| | | | | | | | This causes textures to be deleted before they are no longer accessed, resulting in a segmentation fault. This needs to be rewritten in such a way that textures are deleted when the client disconnects from a server. This reverts commit 41c00e87d42580881d8c7001f39014814e3b55f2.
* Don't leak textures all over the placeKahrl2012-11-021-12/+28
|
* Use proper alpha blit in some more texture modifiersPerttu Ahola2012-08-311-4/+6
|
* Properly initialize baseimg for texture modifier ↵Perttu Ahola2012-08-311-1/+5
| | | | [combine:WxH:X,Y=filename:X,Y=filename2
* Fix random glitches in transparent animationsPerttu Ahola2012-06-181-0/+3
|
* Properly and efficiently use split utility headersPerttu Ahola2012-06-171-1/+3
|
* Initially split utility.h to multiple files in util/Perttu Ahola2012-06-171-1/+1
|
* Allow node cracking animations of any lengthPerttu Ahola2012-06-161-3/+35
|
* Node texture animationPerttu Ahola2012-06-161-2/+44
|
* Switch the license to be LGPLv2/later, with small parts still remaining as ↵Perttu Ahola2012-06-051-4/+4
| | | | GPLv2/later, by agreement of major contributors
* Add texture modification [lowpart:percent:filenamePerttu Ahola2012-06-031-0/+35
|
* Improve texture atlas generationPerttu Ahola2012-04-071-7/+34
|
* Support custom textures installed as /textures/all/*.pngPerttu Ahola2012-04-071-0/+12
|
* [transformN image modifierKahrl2012-03-291-0/+149
|
* Almost support loading sounds from serverPerttu Ahola2012-03-251-1/+5
|
* Move client textures to the correct placePerttu Ahola2012-03-191-3/+3
|
* MapBlockMesh, mesh animation system, urgent mesh updates, athmospheric ↵Kahrl2012-03-151-50/+94
| | | | light, removed footprints
* Initial directory structure reworkPerttu Ahola2012-03-101-3/+4
|
* tile: remove redundant warning about failing render-to-targetJonathan Neuschäfer2012-02-241-2/+0
|
* tile: don't duplicate std::string::find_last_ofJonathan Neuschäfer2012-02-241-9/+3
|
* Node placement / mineral / serialization / iron freq / node_dig callbackKahrl2012-01-221-11/+2
| | | | | | | | - Node placement code moved to Lua - Mineral system removed (added default:stone_with_coal and default:stone_with_iron). - MapBlock and MapNode serialization updated. - Mapgen: Frequency of iron increased. - node_dig callback and related changes.
* The huge item definition and item namespace unification patch (itemdef), see ↵Kahrl2012-01-121-137/+53
| | | | http://c55.me/minetest/wiki/doku.php?id=changes:itemdef
* inventorycube: use all three specified textures; also moved mesh creation / ↵Kahrl2011-12-031-13/+25
| | | | modification functions to mesh.cpp; in lua, inventorycube is now called minetest.inventorycube
* Fix getTextureRaw to always return an image that is not in the texture atlas ↵Perttu Ahola2011-12-011-1/+10
| | | | and fix plain "^[forcesingle" handling
* Fix texture atlas not being created correctlyPerttu Ahola2011-12-011-1/+5
|
* Some MSVC fixesPerttu Ahola2011-11-291-1/+1
|
* Rename menu background to menubg.png, move unknown_block.png and ↵Perttu Ahola2011-11-291-4/+6
| | | | unknown_object.png to client, make generating a placeholder image for the filename "" not cause an error
* Improve luaentity sprite functionality (and add some random stuff)Perttu Ahola2011-11-291-92/+21
|
* If available, use local textures instead of those sent by serverPerttu Ahola2011-11-291-4/+14
|
* Add texture modifier [brighten and modify [toalpha to modify existing ↵Perttu Ahola2011-11-291-33/+46
| | | | texture, not read a new base
* Cut down TextureSource verbosityPerttu Ahola2011-11-291-77/+38
|
* Completely generalized mesh generation; ContentFeatures serializationPerttu Ahola2011-11-291-2/+5
|
* Properly update textures in node definitionsPerttu Ahola2011-11-291-116/+228
|