#include "colcontx.h"
Go to the source code of this file.
Functions | |
DWORD | ConvertColourToScreenWord (ColourContext *cc, DocColour *col) |
Converts the given DocColour into the given screen (RGB) output context for whatever host OS we are running under. This function does NOT include any transparency information in the result. | |
DWORD | ConvertColourToTransScreenWord (ColourContext *cc, DocColour *col) |
Converts the given DocColour into the given screen (RGB) output context for whatever host OS we are running under, including the transparent component as well. |
|
Converts the given DocColour into the given screen (RGB) output context for whatever host OS we are running under. This function does NOT include any transparency information in the result.
Definition at line 136 of file devcolor.h. 00137 { 00138 return( ((ColourContextRGBT *)cc)->ConvertToScreenWord(col) ); 00139 }
|
|
Converts the given DocColour into the given screen (RGB) output context for whatever host OS we are running under, including the transparent component as well.
Definition at line 171 of file devcolor.h. 00172 { 00173 return( ((ColourContextRGBT *)cc)->ConvertToTransparentScreenWord(col) ); 00174 }
|