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

Method writeBoolean

src/codec/utils/EncodeStream.cpp:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48void EncodeStream::writeBoolean(bool value) {
49 if (checkCapacity(1)) {
50 dataView.setBoolean(_position, value);
51 positionChanged(1);
52 }
53}
54
55void EncodeStream::writeInt8(int8_t value) {
56 if (checkCapacity(1)) {

Callers 4

writeValueMethod · 0.80
WriteBooleanFunction · 0.80
WriteVideoCompositionFunction · 0.80
WriteTimeStretchModeFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected