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:
Gregory Nutt
2019-03-13 09:16:30 -06:00
parent e780ee3a08
commit 0454ae2a10
31 changed files with 84 additions and 83 deletions
+3 -3
View File
@@ -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]);
}
}
+2 -2
View File
@@ -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);
}
+2 -2
View File
@@ -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);
}
}
+2 -2
View File
@@ -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
+2 -2
View File
@@ -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
+1 -1
View File
@@ -46,7 +46,7 @@
#include <nuttx/nx/nxglib.h>
#include "nxbe.h"
#include "nxfe.h"
#include "nxmu.h"
/****************************************************************************
* Private Types