Home
last modified time | relevance | path

Searched refs:dirtyW (Results 1 – 3 of 3) sorted by relevance

/dports/emulators/aranym/aranym-1.1.0/src/
H A Ddirty_rects.cpp52 dirtyW = width>>4; in resizeDirty()
54 dirtyW++; in resizeDirty()
60 dirtyMarker = new Uint8[dirtyW * dirtyH]; in resizeDirty()
63 memset(dirtyMarker, 1, dirtyW * dirtyH); in resizeDirty()
102 if ((x>=0) && (x<dirtyW) && (y>=0) && (y<dirtyH)) { in setDirtyRect()
103 dirtyMarker[y*dirtyW+x]=1; in setDirtyRect()
135 memset(dirtyMarker, 0, dirtyW * dirtyH); in clearDirtyRects()
152 return dirtyW; in getDirtyWidth()
H A Dhostscreen.cpp1167 std::vector<SDL_Rect> update_rects(dirtyW*dirtyH); in refreshScreen()
1178 for (int x=0; x<dirtyW; x++) { in refreshScreen()
1179 int block_update = (x==dirtyW-1); /* Force update on last column */ in refreshScreen()
1186 if (dirtyMarker[y * dirtyW + x]) { in refreshScreen()
/dports/emulators/aranym/aranym-1.1.0/src/include/
H A Ddirty_rects.h31 int dirtyW, dirtyH; variable