This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// own.rim.db.gundb-graphdb-api-notes.js | |
// JavaScript based graph-DB module developer user guide wishes | |
// created by Leonard Pauli, 28 aug 2019 | |
// | |
/* includes: | |
install/access module | |
(add, remove, change, traverse) values | |
get current value | |
simple data structures (set) | |
(subscribe, unsubscribe) to changes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
struct TerminalCell | |
{ | |
// cell index into GlyphTexture, should be two 16-bit (x,y) values packed: "x | (y << 16)" | |
uint GlyphIndex; | |
// 0xAABBGGRR encoded colors, nonzero alpha for Foreground indicates to render colored-glyph | |
// which means use RGB values from GlyphTexture directly as output, not as ClearType blending weights | |
uint Foreground; |
OlderNewer