亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? lcdmem.c

?? UC_GUI開(kāi)發(fā)源代碼,里面含有范例,源文件
?? C
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/*
*********************************************************************************************************
*                                             uC/GUI V3.98
*                        Universal graphic software for embedded applications
*
*                       (c) Copyright 2002, Micrium Inc., Weston, FL
*                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
*
*              礐/GUI is protected by international copyright laws. Knowledge of the
*              source code may not be used to write a similar product. This file may
*              only be used in accordance with a license and should not be redistributed
*              in any way. We appreciate your understanding and fairness.
*
----------------------------------------------------------------------
File        : LCDMem.C
Purpose     : Driver for LCDs using internal memory
----------------------------------------------------------------------
Version-Date---Author-Explanation
----------------------------------------------------------------------
2.00c   030718 JE     a) 1bpp bitmaps optimized
2.00b   030122 JE     a) Multi display support added
2.00a   010926 JE     a) Reworked to work with LCD_MIRROR_...
                         and LCD_SWAP_XY
2.00    010402 RS     a) LCD_GetDevCaps removed from driver
                         (now LCD.c)
1.00.04 990930 RS     Prototyp changed for LCD_Init()
1.00.03 990927 RS     Config defaults added
1.00.02 990925 RS     Bugfix for transparent 4 color bitmaps
1.00.01 990920 RS     Bugfix for DrawHline
1.00    990823 RS     Xor accelerated.
0.00    990118 RS     First release. 
----------------------------------------------------------------------
Known problems or limitations with current version
----------------------------------------------------------------------
None.
---------------------------END-OF-HEADER------------------------------
*/

#include <string.h>             /* for memset */
#include <stddef.h>           /* needed for definition of NULL */
#include "LCD_Private.h"      /* private modul definitions & config */
#include "GUI_Private.h"
#include "GUIDebug.h"

#if ((LCD_CONTROLLER   == 0) && ((LCD_FIXEDPALETTE==2) | (LCD_FIXEDPALETTE==1)) ) \
      && (!defined(WIN32) | defined(LCD_SIMCONTROLLER))

/*********************************************************************
*
*       Defines
*
**********************************************************************
*/

#if defined(WIN32)
  #if (LCD_DISPLAY_INDEX > 0)
    #if   LCD_DISPLAY_INDEX == 1
      void SIMMEM_On_1(void);
      void SIMMEM_Off_1(void);
      #define LCD_L0_1_On       SIMMEM_On_1
      #define LCD_L0_1_Off      SIMMEM_Off_1
    #elif LCD_DISPLAY_INDEX == 2
      void SIMMEM_On_2(void);
      void SIMMEM_Off_2(void);
      #define LCD_L0_2_On       SIMMEM_On_2
      #define LCD_L0_2_Off      SIMMEM_Off_2
    #elif LCD_DISPLAY_INDEX == 3
      void SIMMEM_On_3(void);
      void SIMMEM_Off_3(void);
      #define LCD_L0_3_On       SIMMEM_On_3
      #define LCD_L0_3_Off      SIMMEM_Off_3
    #elif LCD_DISPLAY_INDEX == 4
      void SIMMEM_On_4(void);
      void SIMMEM_Off_4(void);
      #define LCD_L0_4_On       SIMMEM_On_4
      #define LCD_L0_4_Off      SIMMEM_Off_4
    #else
      #error Not supported yet!
    #endif
  #endif
#endif

#if (GUI_NUM_LAYERS > 1)
  #if LCD_DISPLAY_INDEX == 1
    #define LCD_VRam          LCD_VRam_1
    #define LCD__apVRam       LCD__apVRam_1
    #define LCD_L0_Off        LCD_L0_1_Off
    #define LCD_L0_On         LCD_L0_1_On
    #define LCD__aTimerReload LCD__aTimerReload_1
    #define LCD__BitsPerPixel LCD__BitsPerPixel_1
  #elif LCD_DISPLAY_INDEX == 2
    #define LCD_VRam          LCD_VRam_2
    #define LCD__apVRam       LCD__apVRam_2
    #define LCD_L0_Off        LCD_L0_2_Off
    #define LCD_L0_On         LCD_L0_2_On
    #define LCD__aTimerReload LCD__aTimerReload_2
    #define LCD__BitsPerPixel LCD__BitsPerPixel_2
  #elif LCD_DISPLAY_INDEX == 3
    #define LCD_VRam          LCD_VRam_3
    #define LCD__apVRam       LCD__apVRam_3
    #define LCD_L0_Off        LCD_L0_3_Off
    #define LCD_L0_On         LCD_L0_3_On
    #define LCD__aTimerReload LCD__aTimerReload_3
    #define LCD__BitsPerPixel LCD__BitsPerPixel_3
  #elif LCD_DISPLAY_INDEX == 4
    #define LCD_VRam          LCD_VRam_4
    #define LCD__apVRam       LCD__apVRam_4
    #define LCD_L0_Off        LCD_L0_4_Off
    #define LCD_L0_On         LCD_L0_4_On
    #define LCD__aTimerReload LCD__aTimerReload_4
    #define LCD__BitsPerPixel LCD__BitsPerPixel_4
  #endif
#endif

#define LCD_BYTESPERLINE (((LCD_VXSIZE_PHYS)+7)/8)
				
#ifndef LCD_VRAMTYPE
  #define LCD_VRAMTYPE
#endif

#ifdef WIN32
  #undef LCD_VRAMTYPE
  #define LCD_VRAMTYPE
#endif

/*********************************************************************
*
*       Defaults for configuration
*
* Please be aware that not all configuration errors can be captured !
*/
#ifndef LCD_NUM_EMPTY_LINES
  #define LCD_NUM_EMPTY_LINES 0
#endif
#ifndef LCD_REVERSEMODE_SUPPORT
  #define LCD_REVERSEMODE_SUPPORT (1)
#endif
#ifndef LCD_VERIFY
  #define LCD_VERIFY (0)
#endif

#ifndef LCD_REVERSEMODE_SUPPORT
  #define LCD_REVERSEMODE_SUPPORT (0)
#endif

#ifndef LCD_SUPPORT_VERIFY
  #define LCD_SUPPORT_VERIFY (0)
#endif

/* If disabled, selected drawmode is ignored.
   ==> XOR, REVERSE drawing not supported */
#ifndef LCD_SUPPORT_DRAWMODE
  #define LCD_SUPPORT_DRAWMODE          (1)
#endif

/* Switch support for the LCD_On, LCD_Off functions of the driver */
#ifndef  LCD_SUPPORT_ONOFF
  #define  LCD_SUPPORT_ONOFF            (1)
#endif

/* Switch for support of multiple pages.
 Only available with certain LCD-controllers */
#ifndef LCD_SUPPORT_PAGING
  #define LCD_SUPPORT_PAGING            (0)
#endif

/* Switch for support of run-time inversion of display. */
#ifndef LCD_SUPPORT_REVERSEMODE
  #define LCD_SUPPORT_REVERSEMODE       (0)
#endif

/* Switch support for the LCD_SetOrg function of the driver */
#ifndef LCD_SUPPORT_SETORG
  #define LCD_SUPPORT_SETORG            (1)
#endif

#ifndef LCD_SUPPORT_PALETTE
  #define LCD_SUPPORT_PALETTE            (1)
#endif

/*********************************************************************
*
*       Support for Segment/COMLUTs
*/

/* For compatibility with older configs, define defaults */
#ifndef LCD_SUPPORT_COMTRANS
  #define LCD_SUPPORT_COMTRANS 0
#endif
#ifndef LCD_SUPPORT_SEGTRANS
  #define LCD_SUPPORT_SEGTRANS 0
#endif

#if LCD_SUPPORT_COMTRANS
  extern U8 LCD__aLine2Com0[LCD_LASTCOM0-LCD_FIRSTCOM0+1];
#endif

#if LCD_SUPPORT_SEGTRANS
  extern U8 LCD__aRow2Seg0[LCD_LASTSEG0-LCD_FIRSTSEG0+1];
#endif

/*********************************************************************
*
*       Macro calculations
*/
/* Define number of used coms/segments per controller */
#define LCD_NUM_SEGS0 (LCD_LASTSEG0-LCD_FIRSTSEG0+1)
#define LCD_NUM_COMS0 (LCD_LASTCOM0-LCD_FIRSTCOM0+1)
/* Define total number of used coms/segments */
#define LCD_NUM_SEGS LCD_NUM_SEGS0
#define LCD_NUM_COMS LCD_NUM_COMS0

#define LCD_MEMSIZE LCD_VXSIZE_PHYS*(LCD_VYSIZE_PHYS+LCD_NUM_EMPTY_LINES)

/*********************************************************************
*
*       Configuration switch checking
*
* Please be aware that not all configuration errors can be captured !
*/
#if (LCD_BITSPERPIXEL != 2) & (LCD_BITSPERPIXEL != 1)
  #error this value for LCD_BITSPERPIXEL not yet supported
#endif

/* Check if number of segments / coms equals resolution */
/*
#if (LCD_NUM_SEGS < LCD_XSIZE_PHYS)
  #error Please check segment setup of controller 0 and X/YSIZE !!!
#endif
#if (LCD_NUM_COMS < LCD_YSIZE_PHYS)
  #error Please check com setup of controller 0 and X/YSIZE !!!
#endif
*/

/*********************************************************************
*
*       EXPORTs for ISR
*/
#ifndef LCD_TIMERINIT1
  #define LCD_TIMERINIT1  1599
#endif
#ifndef LCD_TIMERINIT0
  #define LCD_TIMERINIT0  1065
#endif

U16 LCD__BitsPerPixel = LCD_BITSPERPIXEL;

LCD_VRAMTYPE U8 LCD_VRAMTYPE* LCD__apVRam[LCD_BITSPERPIXEL];

LCD_VRAMTYPE U16 LCD__aTimerReload[LCD_BITSPERPIXEL] = {
  LCD_TIMERINIT0
#if LCD_BITSPERPIXEL > 1
  ,LCD_TIMERINIT1
#endif
};

/*********************************************************************
*
*       ID translation table
*
*  This table contains 0, 1, 2, ... and serves as translation table for DDBs
*/
#define INTS(Base)  Base+0,Base+1,Base+2,Base+3,Base+4,Base+5,   \
                    Base+6,Base+7,Base+8,Base+9,Base+10,Base+11, \
                    Base+12,Base+13,Base+14,Base+15

static const LCD_PIXELINDEX aID[] = {
  INTS(0),
  #if LCD_MAX_LOG_COLORS > 0x10
    INTS(0x10),
  #endif
  #if LCD_MAX_LOG_COLORS > 0x20
    INTS(0x20),
    INTS(0x30),
  #endif
};

/*********************************************************************
*
*       Macros for internal use
*/
#if (LCD_SUPPORT_COMTRANS)
  #if (LCD_MIRROR_Y)
    #error LCD_MIRROR_Y not supported with COMTrans !
  #endif
  #if (LCD_MIRROR_X)
    #error LCD_MIRROR_X not supported with COMTrans !
  #endif
#endif

#if (!LCD_SUPPORT_COMTRANS && !LCD_SUPPORT_SEGTRANS)
  #if   (!LCD_MIRROR_X && !LCD_MIRROR_Y && !LCD_SWAP_XY) 
    #define SETPIXEL(x, y, c)      SETPIXELPHYS((x), (y), (c))
    #define SETPIXELFAST(x, y, c)  SETPIXELPHYS((x), (y), (c))
    #define GETPIXEL(x, y)         _GetPixel   ((x), (y))
    #define XORPIXEL(x, y)         _XorPixel    ((x), (y))
  #elif (!LCD_MIRROR_X && !LCD_MIRROR_Y &&  LCD_SWAP_XY) 
    #define SETPIXEL(x, y, c)      SETPIXELPHYS((y), (x), (c))
    #define GETPIXEL(x, y)         _GetPixel   ((y), (x))
    #define XORPIXEL(x, y)         _XorPixel    ((y), (x))
  #elif (!LCD_MIRROR_X &&  LCD_MIRROR_Y && !LCD_SWAP_XY) 
    #define SETPIXEL(x, y, c)      SETPIXELPHYS((x), (LCD_YSIZE-1-(y)), (c))
    #define SETPIXELFAST(x, y, c)  SETPIXELPHYS((x), (LCD_YSIZE-1-(y)), (c))
    #define GETPIXEL(x, y)         _GetPixel   ((x), (LCD_YSIZE-1-(y)))
    #define XORPIXEL(x, y)         _XorPixel    ((x), (LCD_YSIZE-1-(y)))
  #elif (!LCD_MIRROR_X &&  LCD_MIRROR_Y &&  LCD_SWAP_XY) 
    #define SETPIXEL(x, y, c)      SETPIXELPHYS((y), (LCD_XSIZE-1-(x)), (c))
    #define GETPIXEL(x, y)         _GetPixel   ((y), (LCD_XSIZE-1-(x)))
    #define XORPIXEL(x, y)         _XorPixel    ((y), (LCD_XSIZE-1-(x)))
  #elif ( LCD_MIRROR_X && !LCD_MIRROR_Y && !LCD_SWAP_XY) 
    #define SETPIXEL(x, y, c)      SETPIXELPHYS((LCD_XSIZE-1-(x)), (y), (c))
    #define SETPIXELFAST(x, y, c)  SETPIXELPHYS((LCD_XSIZE-1-(x)), (y), (c))
    #define GETPIXEL(x, y)         _GetPixel   ((LCD_XSIZE-1-(x)), (y))
    #define XORPIXEL(x, y)         _XorPixel    ((LCD_XSIZE-1-(x)), (y))
  #elif ( LCD_MIRROR_X && !LCD_MIRROR_Y &&  LCD_SWAP_XY) 
    #define SETPIXEL(x, y, c)      SETPIXELPHYS((LCD_YSIZE-1-(y)), (x), (c))
    #define GETPIXEL(x, y)         _GetPixel   ((LCD_YSIZE-1-(y)), (x))
    #define XORPIXEL(x, y)         _XorPixel    ((LCD_YSIZE-1-(y)), (x))
  #elif ( LCD_MIRROR_X &&  LCD_MIRROR_Y && !LCD_SWAP_XY) 
    #define SETPIXEL(x, y, c)      SETPIXELPHYS((LCD_XSIZE-1-(x)), (LCD_YSIZE-1-(y)), (c))
    #define SETPIXELFAST(x, y, c)  SETPIXELPHYS((LCD_XSIZE-1-(x)), (LCD_YSIZE-1-(y)), (c))
    #define GETPIXEL(x, y)         _GetPixel   ((LCD_XSIZE-1-(x)), (LCD_YSIZE-1-(y)))
    #define XORPIXEL(x, y)         _XorPixel    ((LCD_XSIZE-1-(x)), (LCD_YSIZE-1-(y)))
  #elif ( LCD_MIRROR_X &&  LCD_MIRROR_Y &&  LCD_SWAP_XY) 
    #error This combination of mirroring/swapping not yet supported
  #endif
#elif (LCD_SUPPORT_COMTRANS && !LCD_SUPPORT_SEGTRANS)
  #if (!LCD_SWAP_XY)
    #define SETPIXEL(x, y, c)      _SetPixelPhys(x,LCD__aLine2Com0[y], c)
    #define SETPIXELFAST(x, y, c)  SETPIXELPHYS(x,LCD__aLine2Com0[y], c)
    #define GETPIXEL(x, y)     _GetPixel(x,LCD__aLine2Com0[y])
    #define XORPIXEL(x, y)      _XorPixel(x,LCD__aLine2Com0[y])
  #else
    #define SETPIXEL(x, y, c)      _SetPixelPhys(y,LCD__aLine2Com0[x], c)
    #define SETPIXELFAST(x, y, c)  SETPIXELPHYS(y,LCD__aLine2Com0[x], c)
    #define GETPIXEL(x, y)     _GetPixel(y,LCD__aLine2Com0[x])
    #define XORPIXEL(x, y)      _XorPixel(y,LCD__aLine2Com0[x])
  #endif
#else
  #error This combination of switches not yet supported
#endif

/*********************************************************************
*
*       Set pixel macros
*/
#if LCD_BITSPERPIXEL == 1
  #define SETPIXELPHYS(x,y,c)                       \
  {                                                 \
    unsigned int Off = y*LCD_BYTESPERLINE+((x)>>3);	  \
    U8 Data = 0x80>>((x)&7);						              \
    if (c&1) LCD_VRam[0][Off] |=  Data;				      \
    else     LCD_VRam[0][Off] &= ~Data;				      \
  }
#elif LCD_BITSPERPIXEL == 2
  #define SETPIXELPHYS(x,y,c)                       \
  {                                                 \
    unsigned int Off = y*LCD_BYTESPERLINE+((x)>>3);	  \
    U8 Data = 0x80>>((x)&7);						              \
    if (c&1) LCD_VRam[0][Off] |=  Data;				      \
    else     LCD_VRam[0][Off] &= ~Data;				      \
    if (c&2) LCD_VRam[1][Off] |=  Data;				      \
    else     LCD_VRam[1][Off] &= ~Data;             \
  }
#else
  #error unsupported Configuration
#endif

#define PIXELCOLOR U8

#define BKCOLOR LCD_BKCOLORINDEX
#define   COLOR LCD_COLORINDEX

/*********************************************************************
*
*       Static data
*
**********************************************************************
*/

LCD_VRAMTYPE U8 LCD_VRam[LCD_BITSPERPIXEL][LCD_VYSIZE_PHYS * LCD_BYTESPERLINE];

#if (!LCD_SWAP_XY)
static const U8 aMask[] = {255,127,63,31,15,7,3,1,0};
#endif

/*********************************************************************
*
*       Static code
*
**********************************************************************
*/

/*********************************************************************
*
*       _SetPixelPhys
*/
static void _SetPixelPhys(int x, int y, PIXELCOLOR c) {
  SETPIXELPHYS(x,y,c);
}

/*********************************************************************
*
*       _GetPixel
*/
static U8 _GetPixel(int x, int y) {
#if LCD_BITSPERPIXEL == 1
  unsigned int Off = y*LCD_BYTESPERLINE+(x>>3);
  U8 Data  = (LCD_VRam[0][Off] >> (7-(x&7))) &1;
  return Data;
#elif LCD_BITSPERPIXEL == 2
  unsigned int Off = y*LCD_BYTESPERLINE+(x>>3);
  U8 Data  = (LCD_VRam[0][Off] >> (7-(x&7))) &1;
  Data |= ((LCD_VRam[1][Off] >> (7-(x&7)))<<1) &2;
  return Data;
#else
  #error Colordepth not supported by this driver !
#endif
}

/*********************************************************************
*
*       _XorPixel
*/
static void _XorPixel   (int x, int y) {
  PIXELCOLOR Index = _GetPixel(x,y);
  Index = LCD_NUM_COLORS-1-Index;
  _SetPixelPhys(x,y,Index);
}

/*********************************************************************
*
*       _DrawBitLine1BPP (optimized)
*/
#if (!LCD_MIRROR_X) && \
    (!LCD_MIRROR_Y) && \
    (!LCD_SWAP_XY) && \
    (LCD_BITSPERPIXEL == 1)
/*********************************************************************
*
*       _DrawBitMap1BPP
*/
static void  _DrawBitMap1BPP(int x0, int y, U8 const GUI_UNI_PTR * p0, int Diff0, int xsize, int ysize, int BytesPerLine) {
  U8 * pVRam = &LCD_VRam[0][y * LCD_BYTESPERLINE + ((x0) >> 3)];
  int x1 = x0 + xsize - 1;
  U8 Mask0   = 0xff   >> (x0 &7);
  U8 EndMask = 0xff80 >> (x1&7);
  int NumBytes0 = (x1 >> 3) - (x0 >> 3);
  U8 * pVRam0 = pVRam;

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91浏览器在线视频| 国产综合色视频| 亚洲激情六月丁香| 中文字幕乱码久久午夜不卡 | 久久网站热最新地址| 91精品国产综合久久小美女| 欧美日韩免费电影| 欧美日韩国产高清一区二区| 欧美偷拍一区二区| 在线观看日韩精品| 欧美人与禽zozo性伦| 精品视频免费看| 欧美精品1区2区3区| 欧美日韩你懂的| 欧美一级片免费看| 亚洲精品在线观看视频| 久久青草欧美一区二区三区| 久久免费视频色| 国产精品理论片在线观看| 1000精品久久久久久久久| 亚洲视频一二区| 亚洲第一在线综合网站| 日本中文字幕一区| 国产美女精品在线| av一区二区三区在线| 色网综合在线观看| 欧美丰满美乳xxx高潮www| 欧美成人精品1314www| 国产欧美视频一区二区三区| 亚洲欧美怡红院| 亚洲成av人综合在线观看| 麻豆91免费看| 成人高清在线视频| 欧美日韩一区二区电影| 欧美sm极限捆绑bd| 中文字幕在线一区二区三区| 亚洲国产精品人人做人人爽| 精品综合免费视频观看| 成人av网站在线观看免费| 欧美在线播放高清精品| 91精品国产综合久久精品性色 | 综合久久久久久久| 亚洲综合视频在线观看| 日韩一区精品字幕| 国产精品一区二区黑丝| 一本大道av一区二区在线播放| 欧美午夜宅男影院| 久久欧美一区二区| 一区二区三区国产精华| 日韩专区中文字幕一区二区| 国产成人免费视频一区| 欧美色网站导航| 国产日韩欧美麻豆| 午夜在线电影亚洲一区| 国产精品1区2区3区在线观看| 日本乱人伦aⅴ精品| 精品福利一区二区三区 | 国产成人亚洲综合a∨婷婷| 欧洲av一区二区嗯嗯嗯啊| 精品人在线二区三区| 国产精品私人影院| 秋霞av亚洲一区二区三| 91蜜桃在线观看| 久久婷婷色综合| 午夜视频在线观看一区| 99麻豆久久久国产精品免费| 日韩欧美国产高清| 洋洋成人永久网站入口| 丰满放荡岳乱妇91ww| 5566中文字幕一区二区电影| 中文字幕中文字幕一区二区 | 欧美一区二区三区爱爱| 成人欧美一区二区三区白人 | 成人妖精视频yjsp地址| 欧美mv日韩mv国产网站| 亚洲欧美在线视频观看| 国产91对白在线观看九色| 欧美一区二区视频在线观看 | 国产精品一卡二卡在线观看| 欧美日韩精品三区| 亚洲人妖av一区二区| 国产乱色国产精品免费视频| 日韩欧美中文一区| 午夜一区二区三区在线观看| 91女人视频在线观看| 中文在线一区二区| 麻豆一区二区99久久久久| 欧美日韩一区二区三区四区 | 伦理电影国产精品| 9191久久久久久久久久久| 一卡二卡三卡日韩欧美| 91在线无精精品入口| 国产日韩精品视频一区| 精品一区二区在线免费观看| 91精品国产麻豆| 日韩制服丝袜先锋影音| 91精品国产美女浴室洗澡无遮挡| 亚洲成人av在线电影| 在线一区二区三区| 一区二区三区精品视频在线| 日本韩国欧美在线| 一区二区高清视频在线观看| 色综合久久久网| 亚洲欧美色图小说| 在线精品视频小说1| 亚洲狠狠丁香婷婷综合久久久| 97精品久久久久中文字幕| 成人欧美一区二区三区白人| 97精品电影院| 一区二区在线电影| 欧美日韩国产综合久久| 亚洲电影中文字幕在线观看| 欧美日韩一区二区在线观看| 日韩精品久久理论片| 欧美日韩视频一区二区| 日韩av一区二区在线影视| 91精品国产综合久久久久久 | 欧美成人激情免费网| 久久精品国产99国产精品| 欧美精品一区二区三| 成人性生交大片免费看在线播放| 国产精品久久久久久久久动漫 | 国产成人免费视频精品含羞草妖精| 久久综合九色综合97婷婷女人| 国产精品性做久久久久久| 国产精品卡一卡二卡三| 成年人国产精品| 亚洲青青青在线视频| 欧美日韩激情一区二区| 免费观看久久久4p| 欧美激情在线一区二区三区| 91视频你懂的| 首页欧美精品中文字幕| 久久亚洲精华国产精华液 | 99久久综合国产精品| 亚洲综合免费观看高清完整版在线 | 日韩三级视频在线观看| 激情另类小说区图片区视频区| 久久综合九色综合97_久久久| 国产精品白丝jk白祙喷水网站| 亚洲人精品午夜| 欧美色成人综合| 精品一区二区三区日韩| 国产精品久久久一区麻豆最新章节| 91久久精品一区二区| 麻豆成人综合网| 亚洲免费在线视频一区 二区| 3d成人h动漫网站入口| 国产99一区视频免费| 亚洲国产美女搞黄色| 久久精品人人做人人爽人人| 99精品国产99久久久久久白柏| 亚洲6080在线| 欧美国产日韩a欧美在线观看| 欧美三电影在线| 国产精品99久久久久久宅男| 一区二区久久久久久| 欧美精品一区视频| 欧美日韩美少妇| av在线综合网| 久久丁香综合五月国产三级网站| 国产精品三级久久久久三级| 91精品国产综合久久精品| 成人国产电影网| 久久精品久久精品| 一区二区三区四区在线播放| 精品电影一区二区三区| 欧美性视频一区二区三区| 粉嫩aⅴ一区二区三区四区五区| 午夜欧美一区二区三区在线播放| 久久精品夜夜夜夜久久| 91精品国产品国语在线不卡| 一本色道久久综合亚洲aⅴ蜜桃| 久久电影国产免费久久电影| 亚洲一区二区偷拍精品| 国产精品天天看| 精品伦理精品一区| 7777精品伊人久久久大香线蕉完整版| av亚洲产国偷v产偷v自拍| 国内成+人亚洲+欧美+综合在线| 午夜免费久久看| 亚洲男人的天堂在线aⅴ视频| 久久婷婷一区二区三区| 91精品国产91久久久久久最新毛片| 91亚洲国产成人精品一区二区三| 国产精选一区二区三区| 久久精品国产亚洲5555| 亚洲成人在线观看视频| 一区二区三区四区五区视频在线观看| 国产午夜精品美女毛片视频| 69堂精品视频| 欧美视频一区二区三区四区| 91啪亚洲精品| 色素色在线综合| 91丝袜美女网| 99国产精品久久久| va亚洲va日韩不卡在线观看| 国产精品一区久久久久| 国产综合久久久久久久久久久久| 七七婷婷婷婷精品国产|