mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
This commit removes naming associated with and naming for the now non-existent NXFE graphics layer.
Squashed commit of the following:
graphics/: Rename nxfe_reportposition to nxmu_reportposition. The is no longer an nxfe layer.
graphics/: Renmae nxfe_redrawreq to nxmu_redrawreq. The is no longer an nxfe layer.
graphics/nxmu/nxmu.h: Renmae nxfe.h to nxmu.h. There is no long an nxfe layer.
graphics/: Rename nxfe_state_s to nxmu_state_s. There is no longer an nxfe layer.
graphics/: Rename nxfe_conn_s to nxmu_conn_s. There is no longer an nxfe layer.
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxbe.h"
|
||||
#include "nxfe.h"
|
||||
#include "nxmu.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Private Types
|
||||
@@ -123,7 +123,7 @@ static void nxbe_clipmoveobscured(FAR struct nxbe_clipops_s *cops,
|
||||
struct nxgl_rect_s dst;
|
||||
|
||||
nxgl_rectoffset(&dst, rect, info->offset.x, info->offset.y);
|
||||
nxfe_redrawreq(info->wnd, &dst);
|
||||
nxmu_redrawreq(info->wnd, &dst);
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
@@ -160,7 +160,7 @@ static void nxbe_clipmovedest(FAR struct nxbe_clipops_s *cops,
|
||||
{
|
||||
if (!nxgl_nullrect(&nonintersecting[i]))
|
||||
{
|
||||
nxfe_redrawreq(dstdata->wnd, &nonintersecting[i]);
|
||||
nxmu_redrawreq(dstdata->wnd, &nonintersecting[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxbe.h"
|
||||
#include "nxfe.h"
|
||||
#include "nxmu.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Private Types
|
||||
@@ -96,5 +96,5 @@ void nxbe_raise(FAR struct nxbe_window_s *wnd)
|
||||
* it is not obscured by another window
|
||||
*/
|
||||
|
||||
nxfe_redrawreq(wnd, &wnd->bounds);
|
||||
nxmu_redrawreq(wnd, &wnd->bounds);
|
||||
}
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxbe.h"
|
||||
#include "nxfe.h"
|
||||
#include "nxmu.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Private Types
|
||||
@@ -72,7 +72,7 @@ static void nxbe_clipredraw(FAR struct nxbe_clipops_s *cops,
|
||||
FAR struct nxbe_window_s *wnd = ((struct nxbe_redraw_s *)cops)->wnd;
|
||||
if (wnd)
|
||||
{
|
||||
nxfe_redrawreq(wnd, rect);
|
||||
nxmu_redrawreq(wnd, rect);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxbe.h"
|
||||
#include "nxfe.h"
|
||||
#include "nxmu.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
@@ -88,7 +88,7 @@ void nxbe_setposition(FAR struct nxbe_window_s *wnd,
|
||||
|
||||
/* Report the new size/position */
|
||||
|
||||
nxfe_reportposition(wnd);
|
||||
nxmu_reportposition(wnd);
|
||||
|
||||
/* Then redraw this window AND all windows below it. Having moved the
|
||||
* window, we may have exposed previoulsy obscured portions of windows
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxbe.h"
|
||||
#include "nxfe.h"
|
||||
#include "nxmu.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
@@ -90,7 +90,7 @@ void nxbe_setsize(FAR struct nxbe_window_s *wnd,
|
||||
|
||||
/* Report the new size/position */
|
||||
|
||||
nxfe_reportposition(wnd);
|
||||
nxmu_reportposition(wnd);
|
||||
|
||||
/* Then redraw this window AND all windows below it. Having resized the
|
||||
* window, we may have exposed previoulsy obscured portions of windows
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
#include <nuttx/nx/nxglib.h>
|
||||
|
||||
#include "nxbe.h"
|
||||
#include "nxfe.h"
|
||||
#include "nxmu.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Private Types
|
||||
|
||||
Reference in New Issue
Block a user