| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
src/lib/util/palette.cpp with an assert. Expect regressions, so better to get it out of the way now. nw
|
| |
|
|
|
|
|
|
|
| |
- Make most class methods constexpr
- Make color constants (white, black, etc.) into constexpr factory methods, in order to fix a static initialization problem discussed on the MAMEWorld forums.
(Note that while C++14 allows constexpr member variables to be initialized outside classes, current compilers' support for C++14 constexpr rules has proven to be lamentably deficient.)
- Create bitmap_rgb32::erase to simplify syntax in update handlers
|
|
|
|
|
| |
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
|
| |
|
| |
|
|
|
|
| |
to inline functions (nw)
|
| |
|
|
|
|
| |
This is now used for monochrome screens instead of creating custom
palettes.
|
| |
|
|
|