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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? udbmffnt.c

?? 由http://cevx.com/bbs/的ahbbshenfeng提供!1.軟件功能: 漢字的顯示: UGL/ZINC下漢字的顯示 支持16,12,24點陣漢字的顯示.
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* udbmffnt.c - Bitmapped Monochrome Font (BMF) driver for UGL *//* Copyright 2000 Wind River Systems, Inc. All Rights Reserved *//*modification history--------------------01g,20nov00,msr  Fixed bug with drawing glyph from page that doesn't exist.01f,10nov00,rfm  Fixed pageZero reference01e,10nov00,jlb  Change INCLUDE_UGL_BMF_UNICODE to INCLUDE_UGL_UNICODE01d,23oct00,msr  Fixed fontFindFisrt()/Next() to be re-entrant.01c,15sep00,rfm  Fixed SPR #3447901b,06sep00,rbp  Modifications for refgen added.01a,11feb00,rfm  Created*//* DESCRIPTIONThe Bitmapped Monochrome Font (BMF) driver is contained in this file.NOMANUAL*/#define GB2312_FONT_12/*12X12 字庫*/#define GB2312_FONT_16/*16X16 字庫*/#define GB2312_FONT_24/*24X24 字庫*//* includes */#include <stdlib.h>#include <ctype.h>#include <iolib.h>#include <ugl/ugl.h>/* includes */#define BUILD_DRIVER#include <ugl/driver/font/udbmffnt.h>#include <ugl/uglmem.h>#include <string.h>/* Local funtion prototypes */UGL_LOCAL UGL_STATUS uglBMFFontDriverDestroy (UGL_FONT_DRIVER * pFontDriver);UGL_LOCAL UGL_FONT * uglBMFFontCreate (UGL_FONT_DRIVER * pFontDriver,				       UGL_FONT_DEF * pFontDefinition);UGL_LOCAL UGL_STATUS uglBMFFontDestroy (UGL_FONT * pFont);UGL_LOCAL UGL_SEARCH_ID uglBMFFontFindFirst (UGL_FONT_DRIVER * pFontDriver, 					     UGL_FONT_DESC * pFontDescriptor);UGL_LOCAL UGL_STATUS uglBMFFontFindNext (UGL_FONT_DRIVER * pFontDriver, 					UGL_FONT_DESC * pFontDescriptor, 					UGL_SEARCH_ID searchId);UGL_LOCAL UGL_STATUS uglBMFFontFindClose (UGL_FONT_DRIVER * pFontDriver, 					  UGL_SEARCH_ID searchId);UGL_LOCAL UGL_STATUS uglBMFFontDriverInfo (UGL_FONT_DRIVER * pFontDriver, 					   UGL_INFO_REQ infoRequest, 					   void * pInfo);UGL_LOCAL UGL_STATUS uglBMFFontMetricsGet (UGL_FONT * pFont,					   UGL_FONT_METRICS * pFontMetrics);UGL_LOCAL UGL_STATUS uglBMFFontRotationAngleSet (UGL_FONT * pFont, 						 UGL_ORD angle);UGL_LOCAL UGL_STATUS uglBMFFontSizeSet (UGL_FONT * pFont, 					UGL_SIZE size);UGL_LOCAL UGL_STATUS uglBMFFontWeightSet (UGL_FONT * pFont, 					  UGL_SIZE weight);UGL_LOCAL UGL_STATUS uglBMFTextDraw (UGL_GC * pGc, UGL_POS x, UGL_POS y,				     UGL_SIZE length, const UGL_CHAR * text);UGL_LOCAL UGL_STATUS uglBMFTextSizeGet (UGL_FONT * pFont, UGL_SIZE * pWidth,					UGL_SIZE * pHeight, UGL_SIZE length,					const UGL_CHAR *text);#ifdef INCLUDE_UGL_UNICODEUGL_LOCAL UGL_STATUS uglBMFTextDrawW (UGL_GC * pGc, UGL_POS x, UGL_POS y,				      UGL_SIZE length, const UGL_WCHAR * text);UGL_LOCAL UGL_STATUS uglBMFTextSizeGetW (UGL_FONT * pFont, UGL_SIZE * pWidth, 					 UGL_SIZE * pHeight, UGL_SIZE length,					 const UGL_WCHAR *text);#endif /* INCLUDE_UGL_UNICODE */UGL_LOCAL UGL_GLYPH_CACHE_ELEMENT *     uglBMFGlyphCacheAlloc (UGL_FONT_DRIVER * pFontDriver, 			   void ** pPageElement);UGL_LOCAL void uglBMFGlyphCacheFree(UGL_FONT_DRIVER * pFontDriver, 				 void ** pPageElement);/* This global is declared in the UGL configuration file */extern UGL_BMF_FONT_DESC * uglBMFFontData[];UGL_LOCAL UGL_BOOL uglBMFCacheConfig = UGL_FALSE;char *p12FontInRAM;char *p16FontInRAM;char *p24FontInRAM;/* Add by Li Ran to draw 16x16 Chinese char*/#ifdef GB2312_FONT_16void installHZK( char * directory){	int fd;			/* Add for Chinese char*/	p16FontInRAM = (unsigned char *)malloc(268000);		fd = open(directory, O_RDONLY, 0);	read(fd, p16FontInRAM, 267616);	close(fd);}void font16Draw(UGL_GC_ID gc, int x, int y,unsigned char color,		int page, int fontInPage){  	int i, j, k;	unsigned char * byteNo;	unsigned char font;		byteNo = p16FontInRAM + ( ( page - 0xa1 ) * 94 + fontInPage - 0xa1 ) * 32 ;	for (i = 0 ; i < 16 ; i++ ) 		for ( j = 0 ; j < 2 ; j++ ) {			font = *byteNo;			for ( k = 0 ; k < 8 ; k++ ) {		     		if ( ( font >> ( 7 - k ) ) & 1 )		     			uglPixelSet(gc, x + j * 8 + k, y + i, color);		     	}			     	byteNo ++;		}}#endif#ifdef GB2312_FONT_12void installHZK12( char * directory){	int fd;	/* Add for Chinese char*/	p12FontInRAM = (unsigned char *)malloc(200000);		fd = open(directory, O_RDONLY, 0);	read(fd, p12FontInRAM, 196272);	close(fd);}void font12Draw(UGL_GC_ID gc, int x, int y,unsigned char color,		int page, int fontInPage){  	int i, k;	unsigned char * byteNo;	unsigned char font;		byteNo = p12FontInRAM + ( ( page - 0xa1 ) * 94 + fontInPage - 0xa1 ) * 24 ;	for (i = 0 ; i < 12 ; i++ ) {		font = *byteNo;		for ( k = 0 ; k < 8 ; k++ ) {	     		if ( ( font >> ( 7 - k ) ) & 1 )	     			uglPixelSet(gc, x + k, y + i, color);	     	}		     	byteNo ++;		font = *byteNo;		for ( k = 0 ; k < 4 ; k++ ) {	     		if ( ( font >> ( 7 - k ) ) & 1 )	     			uglPixelSet(gc, x + 8 + k, y + i, color);		}	     	byteNo ++;			}}#endif#ifdef GB2312_FONT_24void installHZK24( char * directory){	int fd;				/* Add for Chinese char*/	p24FontInRAM = (unsigned char *)malloc(500000);		fd = open(directory, O_RDONLY, 0);	read(fd, p24FontInRAM, 498528);	close(fd);}void font24Draw(UGL_GC_ID gc, int x, int y,unsigned char color,		int page, int fontInPage){  	int i, j, k; 	unsigned char * byteNo;	unsigned char font;		byteNo = p24FontInRAM + ( ( page - 0xb0 ) * 94 + fontInPage - 0xa1 ) * 72 ;	for (i = 0 ; i < 24 ; i++ ) 		for ( j = 0 ; j < 3 ; j++ ) {			font = *byteNo;			for ( k = 0 ; k < 8 ; k++ ) {		     		if ( ( font >> ( 7 - k ) ) & 1 )		     			uglPixelSet(gc, x + i, y + j * 8 + k, color);		     	}			     	byteNo ++;		}}#endif/******************************************************************************** uglBMFFontDriverCreate - create the BMF font driver** This function creates a BMF driver that interfaces with UGL font APIs.** RETURNS: Identifier for the created font driver, if successful. Otherwise *          UGL_NULL when the driver cannot be created.** SEE ALSO: **/UGL_FONT_DRIVER * uglBMFFontDriverCreate    (    UGL_UGI_DRIVER * pDriver     )    {    UGL_BMF_FONT_DRIVER * pBMFFontDriver = UGL_NULL;    UGL_FONT_DRIVER * pFontDriver = UGL_NULL;    UGL_SIZE numFonts;    /* Verify that fonts are available */    if (uglBMFFontData == UGL_NULL) 	{	return(UGL_NULL);	}    /* Count the number of available fonts */    for(numFonts = 0; UGL_NULL != uglBMFFontData[numFonts]; numFonts++);    /* If there are no fonts available, return */    if (numFonts == 0) 	{	return(UGL_NULL);	}    pBMFFontDriver = 	(UGL_BMF_FONT_DRIVER *)UGL_CALLOC(1, sizeof(UGL_BMF_FONT_DRIVER));					      if (UGL_NULL != pBMFFontDriver) 	{	pFontDriver = (UGL_FONT_DRIVER *)pBMFFontDriver;	pFontDriver->fontCreate 	= uglBMFFontCreate;	pFontDriver->fontDestroy 	= uglBMFFontDestroy;	pFontDriver->fontDriverDestroy 	= uglBMFFontDriverDestroy;	pFontDriver->fontFindFirst	= uglBMFFontFindFirst;	pFontDriver->fontFindNext	= uglBMFFontFindNext;	pFontDriver->fontFindClose	= uglBMFFontFindClose;	pFontDriver->fontDriverInfo	= uglBMFFontDriverInfo;	pFontDriver->fontMetricsGet 	= uglBMFFontMetricsGet;	pFontDriver->fontRotationAngleSet = uglBMFFontRotationAngleSet;	pFontDriver->fontSizeSet	= uglBMFFontSizeSet;	pFontDriver->fontWeightSet	= uglBMFFontWeightSet;	pFontDriver->textDraw		= uglBMFTextDraw;	pFontDriver->textSizeGet	= uglBMFTextSizeGet;#ifdef INCLUDE_UGL_UNICODE	pFontDriver->textDrawW		= uglBMFTextDrawW;	pFontDriver->textSizeGetW 	= uglBMFTextSizeGetW;#endif /* INCLUDE_UGL_UNICODE */	pFontDriver->pDriver 		= pDriver;	pBMFFontDriver->lockId 		= uglOSLockCreate ();	pBMFFontDriver->textOrigin 	= UGL_FONT_TEXT_BASELINE;	pBMFFontDriver->pFirstFont	= UGL_NULL;	pBMFFontDriver->pLastFont	= UGL_NULL;	pBMFFontDriver->glyphCacheSize	= UGL_BMF_GLYPH_CACHE_SIZE_MAX;	pBMFFontDriver->glyphCachePoolId= UGL_DEFAULT_MEM_POOL_ID;	}    return ((UGL_FONT_DRIVER *)pBMFFontDriver);    }/***************************************************************************** uglBMFFontCreate - create a font ** NOMANUAL**/UGL_LOCAL UGL_FONT * uglBMFFontCreate    (    UGL_FONT_DRIVER * pFontDriver,    UGL_FONT_DEF * pFontDefinition    )    {    UGL_FONT * pFont = UGL_NULL;    UGL_BMF_FONT * pBMFFont;    UGL_BMF_FONT_DRIVER * pBMFFontDriver = 	(UGL_BMF_FONT_DRIVER *)pFontDriver;    int i;    /* Make sure font hasn't all ready been created */    uglOSLock(pBMFFontDriver->lockId);    pBMFFont = pBMFFontDriver->pFirstFont;    if (UGL_NULL != pBMFFont) 	{	for(pFont = (UGL_FONT *)pBMFFont; UGL_NULL != pFont;	    pFont = (UGL_FONT *)pBMFFont = pBMFFont->pNextFont)	    {	    /* Find only an exact match */	    if((pFontDefinition->structSize == sizeof(UGL_FONT_DEF))	       && (pFontDefinition->pixelSize == pBMFFont->pBMFFontDesc->header.pixelSize.min)	       && (pFontDefinition->weight == pBMFFont->pBMFFontDesc->header.weight.min)	       && (pFontDefinition->italic == pBMFFont->pBMFFontDesc->header.italic)	       && (pFontDefinition->charSet == pBMFFont->pBMFFontDesc->header.charSet)	       && !strncmp(pFontDefinition->faceName, 			   pBMFFont->pBMFFontDesc->header.faceName,			   UGL_FONT_FACE_NAME_MAX_LENGTH - 1)	       && !strncmp(pFontDefinition->familyName, 			   pBMFFont->pBMFFontDesc->header.familyName, 			   UGL_FONT_FAMILY_NAME_MAX_LENGTH - 1))		{		pBMFFont = (UGL_BMF_FONT *)pFont;		pBMFFont->referenceCount++;		uglOSUnlock(pBMFFontDriver->lockId);		return((UGL_FONT *)pBMFFont);		}	    }	}    /* Hasn't been created yet, need to create it */    pBMFFont = (UGL_BMF_FONT *)UGL_CALLOC(1, sizeof(UGL_BMF_FONT));    if (UGL_NULL != pBMFFont) 	{	int pageIndex = 0;	pFont = (UGL_FONT *)pBMFFont;	/* Look at each font in the uglBMFFontData array to find a match */	for(i = 0; UGL_NULL != uglBMFFontData[i]; i++)	    {	    /* Find only an exact match */	    if (pFontDefinition->structSize == sizeof(UGL_FONT_DEF)		&& uglBMFFontData[i]->header.pixelSize.min == 		    pFontDefinition->pixelSize		&& uglBMFFontData[i]->header.weight.min == 		    pFontDefinition->weight		&& uglBMFFontData[i]->header.italic == 		    pFontDefinition->italic		&& uglBMFFontData[i]->header.charSet == 		    pFontDefinition->charSet		&& !strncmp(uglBMFFontData[i]->header.faceName, 			    pFontDefinition->faceName,			    UGL_FONT_FACE_NAME_MAX_LENGTH - 1) 		&& !strncmp(uglBMFFontData[i]->header.familyName, 			    pFontDefinition->familyName,			    UGL_FONT_FAMILY_NAME_MAX_LENGTH - 1)) 		{		pBMFFont->pBMFFontDesc = uglBMFFontData[i];		pFont->pFontDriver = pFontDriver;		pBMFFont->referenceCount = 1;#ifdef INCLUDE_UGL_UNICODE		/*				       ------				|----->|    |				|      ------		------          |      |    |		|    | ----------      ------		------                   ...		|    |		       ------		------		       |    |		  ...		       ------		------			pageZero		|    |		------		pageTable				A "page" and a "pageTable" are both arrays of 256		void pointers. Thus, you can have up to 256 glyphs per		page (each glyph in a page is pointed to by an entry in		the page) and up to 256 pages (each page is		pointed to by an entry in the pageTable).		*/		pBMFFont->pageTable[0] = &pBMFFont->pageZero;#endif	/* INCLUDE_UGL_UNICODE */		/* Map each glyph in each page */		while (UGL_NULL != uglBMFFontData[i]->pageData[pageIndex])		    {		    /* Get the pointer to the page */		    const UGL_UINT8 *pageData = 			uglBMFFontData[i]->pageData[pageIndex];		    UGL_FOREVER			{			UGL_UINT32 size = 0;			int page;			int offset;		    			/* page and pageIndex do not have to			   be equal. pageIndex is simply the index			   into the pageData array, while page			   could be discontinuous between  pages.			   For example, a pageIndex of 1 could 			   actually coorespond to data from page			   100. */			page = *(pageData++); 			/* offset = encoding */			offset = *(pageData++);			/* Read size of glyph data */				size = *(pageData++) << 8;			size += *pageData;			/* Test for end of data */			if (size == 0)			    break;			/* Save the glyph location. */#ifdef INCLUDE_UGL_UNICODE			/* Allocate the page if it isn't allocated yet. 			   Make sure the proper entry in the page table			   points to the newly created page */			if (UGL_NULL == pBMFFont->pageTable[page])			    {			    pBMFFont->pageTable[page] = 				(UGL_FONT_PAGE *)UGL_CALLOC(1, sizeof(UGL_FONT_PAGE));			    }			/* Point the entry in the page cooresponding 			   to the offset (ie. encoding) at the glyph data 			   (The glyph data is not cached. It could still			   be in ROM) */			if (UGL_NULL != pBMFFont->pageTable[page])			    {			    (*pBMFFont->pageTable[page])[offset] = 				(UGL_UINT8 *) pageData;			    }#else /* INCLUDE_UGL_UNICODE */			/* Non-Unicode data only requires page zero,			   thus, no page table is necessary. */			if (page == 0)			    {			    pBMFFont->pageZero[offset] = (UGL_UINT8 *)pageData;			    }#endif /* INCLUDE_UGL_UNICODE */			/* Advance pageData to the next glyph */			pageData += size;			}		    /* Advance pageIndex to point at the next array of		       glyphs */ 		    pageIndex++;		    }		/* Add the newly font to the list of available fonts */		if (pBMFFontDriver->pFirstFont)		    {		    /* Append it to the end of the list */		    pBMFFont->pPrevFont = pBMFFontDriver->pLastFont;		    pBMFFontDriver->pLastFont->pNextFont = pBMFFont;		    pBMFFontDriver->pLastFont = pBMFFont;		    }		else		    {		    pBMFFontDriver->pFirstFont = 			pBMFFontDriver->pLastFont = pBMFFont;		    }		uglOSUnlock(pBMFFontDriver->lockId);		return((UGL_FONT *)pBMFFont);		}	    }	}    uglOSUnlock(pBMFFontDriver->lockId);    return(UGL_NULL);    }/***************************************************************************** uglBMFFontDestroy - destroy a font ** NOMANUAL**/UGL_LOCAL UGL_STATUS uglBMFFontDestroy    (    UGL_FONT * pFont    )    {    UGL_BMF_FONT_DRIVER * pBMFFontDriver = 	    (UGL_BMF_FONT_DRIVER *)pFont->pFontDriver;    UGL_BMF_FONT * pBMFFont = (UGL_BMF_FONT *)pFont;    UGL_STATUS status = UGL_STATUS_OK;    /* If the font has been created more than once, simply decrement       the referenceCount variable and return */    uglOSLock(pBMFFontDriver->lockId);    if (pBMFFont->referenceCount > 1)	{	pBMFFont->referenceCount--;	}    /* Only one instance of the font, so it has to be "removed" */    else	{	/* Find the font in the list of fonts and remove it */	if (pBMFFont == pBMFFontDriver->pFirstFont)	    {	    pBMFFontDriver->pFirstFont = pBMFFont->pNextFont;	    if (UGL_NULL != pBMFFontDriver->pFirstFont)		{		pBMFFontDriver->pFirstFont->pPrevFont = UGL_NULL;		}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色94色欧美sute亚洲线路二 | 亚洲乱码一区二区三区在线观看| 视频一区二区三区中文字幕| 日韩色视频在线观看| 国产精品123| 亚洲超碰97人人做人人爱| 精品久久人人做人人爽| av在线不卡电影| 亚洲成国产人片在线观看| 2020国产成人综合网| 日本久久电影网| 亚洲一区二区欧美激情| 欧美嫩在线观看| 国产 日韩 欧美大片| 亚洲高清免费在线| 久久伊人蜜桃av一区二区| 91在线丨porny丨国产| 青娱乐精品视频在线| 成人免费在线观看入口| 欧美三级日韩三级| 风间由美一区二区av101| 日韩成人一区二区| 综合欧美亚洲日本| 日韩欧美在线1卡| 在线亚洲欧美专区二区| 国产成人激情av| 亚洲一区二区三区自拍| 国产日韩欧美精品电影三级在线 | av在线一区二区三区| 免费在线观看不卡| 亚洲国产精品一区二区www在线| 久久你懂得1024| 欧美日韩国产精品成人| 北岛玲一区二区三区四区| 久久福利资源站| 亚洲h动漫在线| 亚洲精品v日韩精品| 国产亚洲欧美在线| 欧美成人一区二区三区| 一本色道亚洲精品aⅴ| 国产成人av自拍| 狠狠网亚洲精品| 蜜桃av一区二区三区电影| 亚洲国产婷婷综合在线精品| 国产精品嫩草影院com| 欧美伦理影视网| 欧美无人高清视频在线观看| 91免费版在线| 99久久免费视频.com| 国产成人三级在线观看| 国产大陆亚洲精品国产| 国产麻豆一精品一av一免费 | 亚洲欧美乱综合| 亚洲欧洲av在线| 欧美本精品男人aⅴ天堂| 91蝌蚪porny| 日本久久电影网| 在线精品亚洲一区二区不卡| 一本到不卡免费一区二区| 成人免费视频免费观看| 丁香激情综合国产| 成人美女视频在线观看18| 国产福利视频一区二区三区| 国产一区二区精品久久91| 国产酒店精品激情| 老司机午夜精品| 国产毛片精品国产一区二区三区| 国产伦精品一区二区三区在线观看| 久久国产夜色精品鲁鲁99| 婷婷成人综合网| 麻豆成人av在线| 日韩国产欧美在线视频| 午夜欧美在线一二页| 奇米色一区二区三区四区| 精品一区二区三区免费毛片爱| 狠狠色丁香婷婷综合| 国产精品一区二区三区网站| 成人激情动漫在线观看| 99精品视频在线观看免费| 成人深夜在线观看| 日本韩国欧美国产| 4438x成人网最大色成网站| 欧美一区二区三区四区在线观看| 91精品国产91久久久久久一区二区 | 欧美日本一区二区三区| 欧美老肥妇做.爰bbww视频| 91麻豆精品国产91久久久久| 日韩一区二区中文字幕| 2024国产精品视频| 久久久五月婷婷| 亚洲色图制服诱惑 | 日韩免费观看高清完整版| 精品电影一区二区三区| 国产性做久久久久久| 国产精品久久久久久久第一福利| 国产精品久久久久久久久晋中| 香蕉影视欧美成人| 国产精品一区二区三区四区| 国产成人av自拍| 欧美日韩精品一二三区| 在线成人免费观看| 国产欧美一区二区在线| 亚洲成人免费电影| 国产美女一区二区| 欧美性一区二区| 国产欧美一区二区精品性色| 怡红院av一区二区三区| 激情亚洲综合在线| 色综合视频在线观看| 欧美成人精品1314www| 成人免费在线观看入口| 久久国产精品99精品国产| 成人免费视频视频在线观看免费| 欧美精品久久一区二区三区| 日本一区二区视频在线| 热久久一区二区| av午夜一区麻豆| 精品国产百合女同互慰| 亚洲精品国产精品乱码不99| 国产一区二区三区视频在线播放| 欧美色爱综合网| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 日本一区二区三区国色天香 | 国产传媒久久文化传媒| 日韩欧美在线网站| 人妖欧美一区二区| 91精品国产欧美日韩| 午夜精品免费在线| 欧美视频一区二区三区在线观看| 亚洲丝袜美腿综合| 91亚洲精品久久久蜜桃| 亚洲欧美日韩电影| 在线观看亚洲a| 一区二区高清在线| 欧美性色aⅴ视频一区日韩精品| 一区二区理论电影在线观看| 91精品1区2区| 无码av免费一区二区三区试看 | 欧美激情一区二区三区蜜桃视频| 国产一区三区三区| 久久九九久久九九| 丁香婷婷综合网| 1024成人网色www| 欧美综合欧美视频| 日韩不卡一区二区| 精品日韩在线观看| 国产不卡视频一区| 欧美国产亚洲另类动漫| 91美女在线观看| 亚洲成人免费电影| 精品国精品国产| 国产iv一区二区三区| 亚洲欧美日韩国产综合在线| 在线观看国产日韩| 免费在线观看视频一区| 久久久国产精华| 91在线精品一区二区| 亚洲一区二区黄色| 欧美一区二区免费观在线| 韩国女主播一区| 中文字幕第一区二区| 91老司机福利 在线| 视频一区欧美精品| 久久久亚洲综合| 91片黄在线观看| 亚洲aⅴ怡春院| 国产网红主播福利一区二区| 91丨九色丨蝌蚪丨老版| 亚洲成人动漫av| 久久久久久久久免费| 91麻豆.com| 男人的天堂亚洲一区| 国产精品伦理一区二区| 欧美日韩国产小视频在线观看| 国产一区二区三区高清播放| 一区二区三区中文字幕精品精品 | a在线欧美一区| 美脚の诱脚舐め脚责91| 国产精品国产三级国产a| 69堂成人精品免费视频| 国产成人精品影视| 性做久久久久久久久| 久久久精品天堂| 欧美精品一二三| 成人免费av资源| 久久国产尿小便嘘嘘尿| 亚洲三级免费电影| 久久综合九色综合97_久久久| 91在线视频免费观看| 久久99久久99小草精品免视看| 最新不卡av在线| 26uuu国产在线精品一区二区| 欧美自拍偷拍一区| 成人性色生活片免费看爆迷你毛片| 亚洲成国产人片在线观看| 中文字幕精品三区| 欧美精品一区二区三区在线播放| 欧美亚洲国产一区在线观看网站| 国产一级精品在线| 麻豆精品久久精品色综合|