MCPcopy Create free account
hub / github.com/Tencent/libpag / writeBitBoolean

Method writeBitBoolean

src/codec/utils/EncodeStream.h:224–226  ·  view source on GitHub ↗

* Writes a Boolean value. A 1-bit integer is written according to the value parameter, either 1 * if true or 0 if false. */

Source from the content-addressed store, hash-verified

222 * if true or 0 if false.
223 */
224 void writeBitBoolean(bool value) {
225 writeUBits(value ? 1 : 0, 1);
226 }
227
228 mutable StreamContext* context;
229

Callers 7

WriteAttributeFlagFunction · 0.80
writeValueListMethod · 0.80
writeAttributeMethod · 0.80
WriteSpatialEaseFunction · 0.80
WriteMarkerListFunction · 0.80
WriteVideoSequenceFunction · 0.80
WriteBitmapSequenceFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected