summaryrefslogtreecommitdiffstatshomepage
path: root/docs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup (nw) ImJezze2016-03-131-13/+13
| | | | | | | - options are reset to loaded preset when game is closed - changed default values of options to result in no effects activated - init_slider_list() does not returns but sets g_slider_list directly - removed unnecessary oriented_vector_texcoords
* Merge pull request #15 from mamedev/master ImJezze2016-03-124-89/+154
|\ | | | | Sync to base master
| * Added README and LICENSE files (CC0) to folders containing meta-data or ↵ Miodrag Milanovic2016-03-052-0/+121
| | | | | | | | documentation (nw)
| * mame.txt: remove surplus "under" jbu2016-03-041-1/+1
| |
| * proofreading (nw) balr0g2016-03-041-9/+9
| |
| * typos, thanks Logan (nw) Miodrag Milanovic2016-03-041-1/+1
| |
| * More doc updates/clarifications Vas Crabb2016-03-041-3/+4
| |
| * Clean up, update to reflect inclusion of more systems Vas Crabb2016-03-041-28/+29
| |
| * deleted old license and restrictions mentioned in mame.txt (nw) Miodrag Milanovic2016-03-042-68/+10
| |
| * lua api: cleanup options handling and fix cheat state return value (nw) Jeffrey Clark2016-02-161-6/+19
| |
| * Extend mame LUA api (nw) Jeffrey Clark2016-02-141-1/+21
| |
| * Add a document with Emscripten build instructions Justin Kerk2016-02-041-0/+60
| |
* | Merge remote-tracking branch 'refs/remotes/mamedev/master' ImJezze2016-02-212-1/+94
| | | | | | | | Second attempt
* | Quality and Performance improvements ImJezze2016-02-201-2/+0
|/ | | | | | | | | | | | | | | | | | | | | | - HLSL now uses NPOT sized target surfaces (breaks compatibility with graphics cards based on R300/R400/NV30 and older) - HLSL target surfaces now have the size of the screen canvas - removed HLSL pre-scale factor - HLSL now uses a sharp bilinear interpolation to pre-scale textures to screen canvas size, based on [Themaister's] implementation - improved overall performance (based on the previously required pre-scale factor, you might notice a 5-50% speed-up depending on your graphics card, more if you used a higher pre-scale factor) - improved shadow mask quality (pixel-perfect) in screen-mode - fixed half source texel offset of bloom level alignment - removed ./hlsl/artwork_support folder - all shaders after pre-scale are now based on screen coordinate (workaground, till both raster and vector pass can work on texture coordinates) - disabled distortion shader for more than one screen and for artworks in full mode, does not affect artworks in copped mode (workaground, till both raster and vector pass can work on texture coordinates) - moved compute_texture_size() from texture_info to texture_manager (nw)
* NTSC Refactoring and Options ImJezze2016-01-251-13/+15
| | | | | | | | | | | | | | - merged YIQ encode and decode pass into one NTSC pass - added options for most NTSC settings - reduced sample count to 64 - changed default O value to 0 - fit NTSC signal jitter between a reasonable limit of 0 and 1 - fit A and B value between a reasonable limit of -1 and 1 - fit scanline jitter between a reasonable limit of 0 and 1 - added hum bar simulation based on [MooglyGuy's] GLSL port of the mame shader pipeline - added monochrome-chessboard.png - added slot-mask-aligned.png (to simulate a TFT LCD)
* Cleanup (nw) ImJezze2015-12-261-2/+2
| | | | | | - renamed shadow_mask_type to shadow_mask_tile_mode - renamed bloom_type to bloom_blend_mode - implemented "Source" shadow mask tile mode for artwork_support/post.fx
* Extended Shadow Mask and Bloom functionality ImJezze2015-12-251-0/+2
| | | | | | | | | | | | - added shadow mask type option to choose between "Screen" and "Source" tile mode ("Screen" is the default as before) - added bloom type option to choose between "Addition" and "Darken" blend mode ("Addition" is the default as before) - the alpha channel of a shadow mask is now filled with the background color of the screen by the amount of the inverted alpha value - added monochrome-matrix.png which can be used in combination with "Source" tile mode and "Darken" blend mode to simulate a STN LCD, for example
* Fixed reset of HLSL settings ImJezze2015-11-081-11/+15
| | | | | | | - fixed bug that resets the HLSL settings when the screen size has changed - removed hardcoded HLSL presets - updates HLSL readme
* Small doc update. Robbbert2015-07-181-2/+2
|
* memory: Remove support for decrypted bases, use an address space instead [O. ↵ Olivier Galibert2015-06-241-2/+2
| | | | Galibert]
* Updated documents to reflect new commands added and made some additions and ↵ Scott Stone2015-06-231-3/+57
| | | | fixes. (nw)
* Addition of commands and details as well as some reordering to match ↵ Scott Stone2015-05-281-28/+53
| | | | -showusage output (nw)
* No longer need this (nw) balr0g2015-05-251-4/+0
|
* Further clarifications (nw) balr0g2015-05-251-3/+5
|
* Properly, legally handle license stuff as we are still contacting people (nw) balr0g2015-05-252-0/+42
|
* Update license information on github (nw) Miodrag Milanovic2015-05-252-39/+0
|
* docs: document LUA color format and screen origin Luca Bruno2015-04-211-0/+3
| | | | Signed-off-by: Luca Bruno <lucab@debian.org>
* Fix various typos and spelling mistakes Zoë Blade2015-04-111-1/+1
| | | | | | | | | | | | | | I'm purposefully leaving /src/emu/bus/cbmiec/c1541.c's kernal.bin as it is, as this particular spelling mistake was originally made by Robert Russell, therefore is canon. See http://en.wikipedia.org/wiki/KERNAL for details. I'm also leaving /src/emu/machine/nscsi_bus.c's RECIEVE as I don't want to break anything, but it's worth someone looking into. I renamed some variables in /src/mame/drivers/sfbonus.c, /src/mame/video/tia.c and /src/mame/video/tia.h, so if anyone wants to verify I didn't break anything, that would be nice.
* Tidy whitespace in plain text files Zoë Blade2015-04-087-59/+58
|
* Tidy documentation Zoë Blade2015-04-051-26/+26
|
* documentation fix for docs/hlsl.txt (nw) Scott Stone2015-03-251-1/+1
|
* docs: add initial documentation for luaengine API Luca Bruno2015-03-161-0/+154
| | | | | | | | | | | This commits add some initial documentation for current API exposed via luaengine. This doc is meant to be a quick walkthrough for script writers coming from mame-rr. Full methods reference is not yet included, as the API is still rapidly changing. Signed-off-by: Luca Bruno <lucab@debian.org>
* Tidy comments Zoë Blade2014-12-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed commit of the following: commit 8d8a0d9713d4614b22f06fda4cf948d4d5561de0 Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Tue Dec 2 17:15:42 2014 +0000 Revert fixes to libraries I'll fix those at the source, where possible. commit 5dde94e3e60dcc622d5b782acaa62e590c62bafb Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Tue Dec 2 16:57:32 2014 +0000 Add apostrophes commit b27e168b58861f1ad0ca7af1c6ca1629cc6730ce Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Mon Dec 1 16:28:58 2014 +0000 Fix some more word duplication I've left some instances of " in in " in, as they're ambiguous and may actually be correct. commit a3dfd10cd501c3a521010942f950f5ca2c5395a7 Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Mon Dec 1 10:35:03 2014 +0000 Fix another typo commit 01a3702209d9e880ac8f60dc4d74f26d426234fb Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Mon Dec 1 10:33:57 2014 +0000 Fix more typos commit 56c6fffd8769cdfab62c59c04d41b98b7f425262 Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Mon Dec 1 10:30:19 2014 +0000 Hopefully fix typos I'm not entirely sure about src/mame/drivers/nova2001.c line 933, as it could plausibly be either "which is not the top bit" or "which is now the top bit", with almost opposite meaning. commit 906507b221de0175d236e252dc51f122cb56db23 Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Mon Dec 1 08:39:55 2014 +0000 Fix another typo commit 14fcd939ae1c0570c10aacf00c6ea86724086f92 Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Mon Dec 1 08:38:16 2014 +0000 Fix some more word doubling in comments commit d21283a447b94b28a38ec742a09fe425d77b55b2 Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Sun Nov 30 23:06:07 2014 +0000 Fix some more typos commit 59b14d204af6d5983ea6dea2f5c8ad5bcc80460c Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Sun Nov 30 22:56:53 2014 +0000 Tidy more commit 9b3c9a868596c04c1a61b35aa8c96fb82c885149 Author: Zoë Blade <zoe@bytenoise.co.uk> Date: Sun Nov 30 22:43:30 2014 +0000 Tidy more comments
* and what a fine horse it was Michaël Banaan Ananas2014-10-261-1/+1
|
* test Michaël Banaan Ananas2014-10-261-1/+1
|
* If we were documented, we'd be dangerous (nw) Olivier Galibert2014-09-171-7/+7
|
* Change remaining references to -nosound to -sound none in code and docs; ↵ Alex W. Jackson2014-06-133-7/+13
| | | | move description of -sound option to OSD-specific doc files to be orthogonal to -video (nw)
* Correct format of -sound command in documents to match recent changes. (nw) Scott Stone2014-06-131-3/+4
|
* Updated hlsl.txt to mirror fact that some commands are no longer valid (nw) Scott Stone2014-03-221-3/+0
|
* (mess): Floppy subsystem documentation checkpoint. Incomplete, but Olivier Galibert2014-01-301-0/+633
| | | there's too many people looking at it not to push it. [O. Galibert]
* placeholder Olivier Galibert2014-01-301-0/+0
|
* add license info for some things i worked on, some small cleanups Dirk Best2013-10-171-2/+3
|
* Bulk convert files that already had standard BSD license in my name Aaron Giles2013-10-161-1/+1
| | | | to new license tagged form.
* add licenseinfo.txt for lookup of the newly added license tags; please add ↵ Jonathan Gevaryahu2013-10-151-0/+3
| | | | to this file if you multi-license using a license not listed in it
* SDL.txt: edited by someone who actually knows what these do ;-) (nw) R. Belmont2013-06-091-18/+35
|
* Further SDL.txt document improvement (nw) Scott Stone2013-06-081-28/+40
|
* Added SDL.txt document for users of SDL builds containing up to date listing ↵ Scott Stone2013-06-083-14/+375
| | | | of commands as well as updating parts of windows.txt and config.txt to take in account SDL differences. (nw)
* Updated windows related documentation (nw) Scott Stone2013-06-071-9/+0
|
* Adding recently added commands to official documentation (nw) Scott Stone2013-06-071-0/+35
|
* Updating of DOCS/hlsl.txt for cover new command additions. (nw) Scott Stone2013-06-061-23/+49
|