MCPcopy Create free account
hub / github.com/carbonengine/trinity / EmitWord

Function EmitWord

trinity/Tr2DxtCompressor.cpp:191–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189}
190
191void EmitWord( word s, uint8_t** outBuff )
192{
193 **outBuff = ( s >> 0 ) & 255;
194 *( *outBuff + 1 ) = ( s >> 8 ) & 255;
195 *outBuff += 2;
196}
197
198void EmitDoubleWord( dword i, uint8_t** outBuff )
199{

Callers 5

CompressYCoCgDXT5Function · 0.85
CompressImageDXT5Function · 0.85
CompressNormalMapDXT5Function · 0.85
CompressImageDXT1Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected