Home
last modified time | relevance | path

Searched refs:TransformationDescriptor (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Backends/Display/
DPixelManipulationTools.cs554 private static TransformationDescriptor[] ByteSqueezeAndMove(byte bits, byte offset) in ByteSqueezeAndMove()
566 var result = new List<TransformationDescriptor>(); in ByteSqueezeAndMove()
574 …result.Add(new TransformationDescriptor((sbyte)(bitsLeft < bits ? -additionalShift : offset), mask… in ByteSqueezeAndMove()
589 private static TransformationDescriptor[] ByteInflate(byte bits, byte bitOffset) in ByteInflate()
601 var result = new List<TransformationDescriptor>(); in ByteInflate()
618 var descriptor = new TransformationDescriptor(shift, (byte)mask, currentBits); in ByteInflate()
629 private struct TransformationDescriptor struct in Antmicro.Renode.Backends.Display.PixelManipulationTools
631 public TransformationDescriptor(sbyte shift, byte mask, byte usedBits) : this() in TransformationDescriptor() argument