nuttx/graphics/nxglib/lcd/nxglib_getrectangle.c
Michael Jung 9140693567 Add lcd_dev_s pointer to lcd_planeinfo_s
In order to support multiple LCD instances per board, add a pointer from
lcd_planeinfo_s to the lcd_dev_s which it belongs to.  Also enhance the
putrun, getrun, putarea and getarea methods to pass through the
lcd_dev_s pointer to the respective device driver.

Port all LCD device drivers to this lcd_planeinfo_s extension.

Enhance SSD1306 driver to support multiple LCDs.

Signed-off-by: Michael Jung <michael.jung@secore.ly>
2022-06-21 21:33:23 +08:00

73 lines
2.4 KiB
C

/****************************************************************************
* graphics/nxglib/lcd/nxglib_getrectangle.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdint.h>
#include <nuttx/lcd/lcd.h>
#include <nuttx/nx/nxglib.h>
#include "nxglib_bitblit.h"
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: nxgl_moverectangle_*bpp
*
* Description:
* Fetch a rectangular region from LCD GRAM memory. The source is
* expressed as a rectangle.
*
****************************************************************************/
void NXGL_FUNCNAME(nxgl_getrectangle, NXGLIB_SUFFIX)
(
FAR struct lcd_planeinfo_s *pinfo,
FAR const struct nxgl_rect_s *rect,
FAR void *dest, unsigned int deststride)
{
FAR uint8_t *dline;
unsigned int ncols;
unsigned int srcrow;
/* Get the width of the rectangle to move in pixels. */
ncols = rect->pt2.x - rect->pt1.x + 1;
/* dline = address of the first row pixel */
dline = (FAR uint8_t *)dest;
/* Copy the rectangle */
for (srcrow = rect->pt1.y; srcrow <= rect->pt2.y; srcrow++)
{
pinfo->getrun(pinfo->dev, srcrow, rect->pt1.x, dline, ncols);
dline += deststride;
}
}