This commit is contained in:
Adam D. Ruppe 2020-09-28 11:08:04 -04:00
parent 0cbc008746
commit aa7c8f2839
2 changed files with 5 additions and 0 deletions

View File

@ -6587,6 +6587,8 @@ struct Pen {
On Windows, this means a device-independent bitmap. On X11, it is an XImage.
$(WARNING On X, do not create an Image in an application without an event loop. You may create images before running the event loop, but the event loop must run at some point before you try to actually draw the image to screen or before you exit your program.)
$(NOTE If you are writing platform-aware code and need to know low-level details, uou may check `if(Image.impl.xshmAvailable)` to see if MIT-SHM is used on X11 targets to draw `Image`s and `Sprite`s. Use `static if(UsingSimpledisplayX11)` to determine if you are compiling for an X11 target.)
Drawing an image to screen is not necessarily fast, but applying algorithms to draw to the image itself should be fast. An `Image` is also the first step in loading and displaying images loaded from files.

View File

@ -806,10 +806,13 @@ class TerminalEmulator {
static struct TerminalCell {
align(1):
private union {
// OMG the top 11 bits of a dchar are always 0
// and i can reuse them!!!
struct {
dchar chStore = ' '; /// the character
TextAttributes attributesStore; /// color, etc.
}
// 64 bit pointer also has unused 16 bits but meh.
NonCharacterData nonCharacterDataStore; /// iff hasNonCharacterData
}