Changeset 38490 for titan/titan/skin.h
- Timestamp:
- 09/03/16 09:48:26 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/skin.h
r38489 r38490 1469 1469 } 1470 1470 1471 externinline void drawpixelfastfb(struct fb* node, int posx, int posy, unsigned long color)1471 inline void drawpixelfastfb(struct fb* node, int posx, int posy, unsigned long color) 1472 1472 { 1473 1473 node->fblong[posy + posx] = color; 1474 1474 } 1475 1475 1476 externinline void drawpixelfb(struct fb* node, int posx, int posy, unsigned long color)1476 inline void drawpixelfb(struct fb* node, int posx, int posy, unsigned long color) 1477 1477 { 1478 1478 node->fblong[(node->width * posy) + posx] = color;
Note: See TracChangeset
for help on using the changeset viewer.