Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DSTM32DMA2D.cs124 …utSizeField.Value + 1) * (uint)foregroundClutColorModeField.Value.ToPixelFormat().GetColorDepth()]; in STM32DMA2D()
156 …utSizeField.Value + 1) * (uint)backgroundClutColorModeField.Value.ToPixelFormat().GetColorDepth()]; in STM32DMA2D()
212 var outputFormatColorDepth = outputColorModeField.Value.ToPixelFormat().GetColorDepth(); in HandleOutputBufferSizeChange()
219 … var backgroundFormatColorDepth = backgroundColorModeField.Value.ToPixelFormat().GetColorDepth(); in HandleBackgroundBufferSizeChange()
226 … var foregroundFormatColorDepth = foregroundColorModeField.Value.ToPixelFormat().GetColorDepth(); in HandleForegroundBufferSizeChange()
263 var colorDepth = outputFormat.GetColorDepth(); in DoTransfer()
279 … var lineWidth = (int)pixelsPerLineField.Value * outputFormat.GetColorDepth(); in DoTransfer()
280 … var offset = lineWidth + ((int)outputLineOffsetField.Value * outputFormat.GetColorDepth()); in DoTransfer()
310 … (int)foregroundLineOffsetField.Value * foregroundFormat.GetColorDepth(), in DoTransfer()
311 (int)outputLineOffsetField.Value * outputFormat.GetColorDepth(), in DoTransfer()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Video/
DAutoRepaintingVideo.cs38 var outBuffer = new byte[Width * Height * RawImageData.PixelFormat.GetColorDepth()]; in TakeScreenshot()
120 buffer = new byte[Width * Height * Format.GetColorDepth()]; in Reconfigure()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DRawImageData.cs19 if(bytes.Length != width * height * PixelFormat.GetColorDepth()) in RawImageData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Backends/Display/
DPixelManipulationTools.cs108 …sion.Assign(vBackStep, Expression.Constant(backgroudBufferDescriptor.ColorFormat.GetColorDepth())), in GenerateBlendMethod()
109 …on.Assign(vFrontStep, Expression.Constant(foregroundBufferDescriptor.ColorFormat.GetColorDepth())), in GenerateBlendMethod()
110 …pression.Assign(vOutStep, Expression.Constant(outputBufferDescriptor.ColorFormat.GetColorDepth())), in GenerateBlendMethod()
271 …Expression.Assign(vInStep, Expression.Constant(inputBufferDescriptor.ColorFormat.GetColorDepth())), in GenerateConvertMethod()
272 …pression.Assign(vOutStep, Expression.Constant(outputBufferDescriptor.ColorFormat.GetColorDepth())), in GenerateConvertMethod()
329 … var inputBytes = new ParameterExpression[inputBufferDescriptor.ColorFormat.GetColorDepth()]; in GenerateFrom()
393 …clutWidth = Expression.Constant((uint)inputBufferDescriptor.ClutColorFormat.Value.GetColorDepth()); in GenerateFrom()
534 ….BigEndian) ? (int) currentByte : (outputBufferDescriptor.ColorFormat.GetColorDepth() - currentByt… in GenerateTo()
DColorFormat.cs79 public static int GetColorDepth(this PixelFormat format) in GetColorDepth() method in Antmicro.Renode.Backends.Display.PixelFormatExtensions
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DDisplayImageCommand.cs51 var bytes = new byte[width * height * RawImageData.PixelFormat.GetColorDepth()]; in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Camera/
DHostCamera.cs70 …lt = new byte[decompressed.Width * decompressed.Height * RawImageData.PixelFormat.GetColorDepth()]; in GetLastFrame()
/Renode-Infrastructure-v1.15.3-29f510e/src/UI/VideoAnalyzer/
DFrameBufferDisplayWidget.cs106 outBuffer = new byte[desiredWidth * desiredHeight * pixelFormat.GetColorDepth()]; in SetDisplayParameters()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Video/
DSTM32LTDC.cs275 var colorDepth = layerPixelFormat.GetColorDepth(); in RestoreBuffers()