Searched refs:outRowData (Results 1 - 1 of 1) sorted by relevance

/haiku/src/add-ons/translators/ico/
H A DICO.cpp300 rgba32_color *outRowData = (rgba32_color *)rowAllocator.Allocate(outRowBytes); local
301 if (outRowData == NULL)
337 outRowData[x] = palette[index];
343 outRowData[x].blue = (color >> 11) << 3;
344 outRowData[x].green = ((color >> 5) & 0x3f) << 3;
345 outRowData[x].red = (color & 0x1f) << 3;
350 outRowData[x].blue = line[x * 3 + 0];
351 outRowData[x].green = line[x * 3 + 1];
352 outRowData[x].red = line[x * 3 + 2];
356 outRowData[
[all...]

Completed in 36 milliseconds