OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:destinationhandle
(Results
1 - 1
of
1
) sorted by null
/external/webkit/Source/WebCore/platform/image-decoders/haiku/
ImageDecoderHaiku.cpp
49
uint8*
destinationHandle
= destination;
52
destinationHandle
[0] = sourceHandle[0];
53
destinationHandle
[1] = sourceHandle[1];
54
destinationHandle
[2] = sourceHandle[2];
55
destinationHandle
[3] = sourceHandle[3];
57
destinationHandle
[0] = static_cast<uint16>(sourceHandle[0]) * 255 / sourceHandle[3];
58
destinationHandle
[1] = static_cast<uint16>(sourceHandle[1]) * 255 / sourceHandle[3];
59
destinationHandle
[2] = static_cast<uint16>(sourceHandle[2]) * 255 / sourceHandle[3];
60
destinationHandle
[3] = sourceHandle[3];
62
destinationHandle
+= 4
[
all
...]
Completed in 802 milliseconds