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

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

?? sdl_video.h

?? 一個非常有用的開源代碼
?? H
?? 第 1 頁 / 共 3 頁
字號:
 * is not natively available. * * If SDL_HWSURFACE is set in 'flags', the video surface will be placed in * video memory, if possible, and you may have to call SDL_LockSurface() * in order to access the raw framebuffer.  Otherwise, the video surface * will be created in system memory. * * If SDL_ASYNCBLIT is set in 'flags', SDL will try to perform rectangle * updates asynchronously, but you must always lock before accessing pixels. * SDL will wait for updates to complete before returning from the lock. * * If SDL_HWPALETTE is set in 'flags', the SDL library will guarantee * that the colors set by SDL_SetColors() will be the colors you get. * Otherwise, in 8-bit mode, SDL_SetColors() may not be able to set all * of the colors exactly the way they are requested, and you should look * at the video surface structure to determine the actual palette. * If SDL cannot guarantee that the colors you request can be set,  * i.e. if the colormap is shared, then the video surface may be created * under emulation in system memory, overriding the SDL_HWSURFACE flag. * * If SDL_FULLSCREEN is set in 'flags', the SDL library will try to set * a fullscreen video mode.  The default is to create a windowed mode * if the current graphics system has a window manager. * If the SDL library is able to set a fullscreen video mode, this flag  * will be set in the surface that is returned. * * If SDL_DOUBLEBUF is set in 'flags', the SDL library will try to set up * two surfaces in video memory and swap between them when you call  * SDL_Flip().  This is usually slower than the normal single-buffering * scheme, but prevents "tearing" artifacts caused by modifying video  * memory while the monitor is refreshing.  It should only be used by  * applications that redraw the entire screen on every update. * * If SDL_RESIZABLE is set in 'flags', the SDL library will allow the * window manager, if any, to resize the window at runtime.  When this * occurs, SDL will send a SDL_VIDEORESIZE event to you application, * and you must respond to the event by re-calling SDL_SetVideoMode() * with the requested size (or another size that suits the application). * * If SDL_NOFRAME is set in 'flags', the SDL library will create a window * without any title bar or frame decoration.  Fullscreen video modes have * this flag set automatically. * * This function returns the video framebuffer surface, or NULL if it fails. * * If you rely on functionality provided by certain video flags, check the * flags of the returned surface to make sure that functionality is available. * SDL will fall back to reduced functionality if the exact flags you wanted * are not available. */extern DECLSPEC SDL_Surface * SDLCALL SDL_SetVideoMode			(int width, int height, int bpp, Uint32 flags);/* * Makes sure the given list of rectangles is updated on the given screen. * If 'x', 'y', 'w' and 'h' are all 0, SDL_UpdateRect will update the entire * screen. * These functions should not be called while 'screen' is locked. */extern DECLSPEC void SDLCALL SDL_UpdateRects		(SDL_Surface *screen, int numrects, SDL_Rect *rects);extern DECLSPEC void SDLCALL SDL_UpdateRect		(SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);/* * On hardware that supports double-buffering, this function sets up a flip * and returns.  The hardware will wait for vertical retrace, and then swap * video buffers before the next video surface blit or lock will return. * On hardware that doesn not support double-buffering, this is equivalent * to calling SDL_UpdateRect(screen, 0, 0, 0, 0); * The SDL_DOUBLEBUF flag must have been passed to SDL_SetVideoMode() when * setting the video mode for this function to perform hardware flipping. * This function returns 0 if successful, or -1 if there was an error. */extern DECLSPEC int SDLCALL SDL_Flip(SDL_Surface *screen);/* * Set the gamma correction for each of the color channels. * The gamma values range (approximately) between 0.1 and 10.0 *  * If this function isn't supported directly by the hardware, it will * be emulated using gamma ramps, if available.  If successful, this * function returns 0, otherwise it returns -1. */extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);/* * Set the gamma translation table for the red, green, and blue channels * of the video hardware.  Each table is an array of 256 16-bit quantities, * representing a mapping between the input and output for that channel. * The input is the index into the array, and the output is the 16-bit * gamma value at that index, scaled to the output color precision. *  * You may pass NULL for any of the channels to leave it unchanged. * If the call succeeds, it will return 0.  If the display driver or * hardware does not support gamma translation, or otherwise fails, * this function will return -1. */extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue);/* * Retrieve the current values of the gamma translation tables. *  * You must pass in valid pointers to arrays of 256 16-bit quantities. * Any of the pointers may be NULL to ignore that channel. * If the call succeeds, it will return 0.  If the display driver or * hardware does not support gamma translation, or otherwise fails, * this function will return -1. */extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue);/* * Sets a portion of the colormap for the given 8-bit surface.  If 'surface' * is not a palettized surface, this function does nothing, returning 0. * If all of the colors were set as passed to SDL_SetColors(), it will * return 1.  If not all the color entries were set exactly as given, * it will return 0, and you should look at the surface palette to * determine the actual color palette. * * When 'surface' is the surface associated with the current display, the * display colormap will be updated with the requested colors.  If  * SDL_HWPALETTE was set in SDL_SetVideoMode() flags, SDL_SetColors() * will always return 1, and the palette is guaranteed to be set the way * you desire, even if the window colormap has to be warped or run under * emulation. */extern DECLSPEC int SDLCALL SDL_SetColors(SDL_Surface *surface, 			SDL_Color *colors, int firstcolor, int ncolors);/* * Sets a portion of the colormap for a given 8-bit surface. * 'flags' is one or both of: * SDL_LOGPAL  -- set logical palette, which controls how blits are mapped *                to/from the surface, * SDL_PHYSPAL -- set physical palette, which controls how pixels look on *                the screen * Only screens have physical palettes. Separate change of physical/logical * palettes is only possible if the screen has SDL_HWPALETTE set. * * The return value is 1 if all colours could be set as requested, and 0 * otherwise. * * SDL_SetColors() is equivalent to calling this function with *     flags = (SDL_LOGPAL|SDL_PHYSPAL). */extern DECLSPEC int SDLCALL SDL_SetPalette(SDL_Surface *surface, int flags,				   SDL_Color *colors, int firstcolor,				   int ncolors);/* * Maps an RGB triple to an opaque pixel value for a given pixel format */extern DECLSPEC Uint32 SDLCALL SDL_MapRGB			(SDL_PixelFormat *format, Uint8 r, Uint8 g, Uint8 b);/* * Maps an RGBA quadruple to a pixel value for a given pixel format */extern DECLSPEC Uint32 SDLCALL SDL_MapRGBA(SDL_PixelFormat *format,				   Uint8 r, Uint8 g, Uint8 b, Uint8 a);/* * Maps a pixel value into the RGB components for a given pixel format */extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, SDL_PixelFormat *fmt,				Uint8 *r, Uint8 *g, Uint8 *b);/* * Maps a pixel value into the RGBA components for a given pixel format */extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, SDL_PixelFormat *fmt,				 Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a);/* * Allocate and free an RGB surface (must be called after SDL_SetVideoMode) * If the depth is 4 or 8 bits, an empty palette is allocated for the surface. * If the depth is greater than 8 bits, the pixel format is set using the * flags '[RGB]mask'. * If the function runs out of memory, it will return NULL. * * The 'flags' tell what kind of surface to create. * SDL_SWSURFACE means that the surface should be created in system memory. * SDL_HWSURFACE means that the surface should be created in video memory, * with the same format as the display surface.  This is useful for surfaces * that will not change much, to take advantage of hardware acceleration * when being blitted to the display surface. * SDL_ASYNCBLIT means that SDL will try to perform asynchronous blits with * this surface, but you must always lock it before accessing the pixels. * SDL will wait for current blits to finish before returning from the lock. * SDL_SRCCOLORKEY indicates that the surface will be used for colorkey blits. * If the hardware supports acceleration of colorkey blits between * two surfaces in video memory, SDL will try to place the surface in * video memory. If this isn't possible or if there is no hardware * acceleration available, the surface will be placed in system memory. * SDL_SRCALPHA means that the surface will be used for alpha blits and  * if the hardware supports hardware acceleration of alpha blits between * two surfaces in video memory, to place the surface in video memory * if possible, otherwise it will be placed in system memory. * If the surface is created in video memory, blits will be _much_ faster, * but the surface format must be identical to the video surface format, * and the only way to access the pixels member of the surface is to use * the SDL_LockSurface() and SDL_UnlockSurface() calls. * If the requested surface actually resides in video memory, SDL_HWSURFACE * will be set in the flags member of the returned surface.  If for some * reason the surface could not be placed in video memory, it will not have * the SDL_HWSURFACE flag set, and will be created in system memory instead. */#define SDL_AllocSurface    SDL_CreateRGBSurfaceextern DECLSPEC SDL_Surface * SDLCALL SDL_CreateRGBSurface			(Uint32 flags, int width, int height, int depth, 			Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);extern DECLSPEC SDL_Surface * SDLCALL SDL_CreateRGBSurfaceFrom(void *pixels,			int width, int height, int depth, int pitch,			Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);extern DECLSPEC void SDLCALL SDL_FreeSurface(SDL_Surface *surface);/* * SDL_LockSurface() sets up a surface for directly accessing the pixels. * Between calls to SDL_LockSurface()/SDL_UnlockSurface(), you can write * to and read from 'surface->pixels', using the pixel format stored in  * 'surface->format'.  Once you are done accessing the surface, you should  * use SDL_UnlockSurface() to release it. * * Not all surfaces require locking.  If SDL_MUSTLOCK(surface) evaluates * to 0, then you can read and write to the surface at any time, and the * pixel format of the surface will not change.  In particular, if the * SDL_HWSURFACE flag is not given when calling SDL_SetVideoMode(), you * will not need to lock the display surface before accessing it. *  * No operating system or library calls should be made between lock/unlock * pairs, as critical system locks may be held during this time. * * SDL_LockSurface() returns 0, or -1 if the surface couldn't be locked. */extern DECLSPEC int SDLCALL SDL_LockSurface(SDL_Surface *surface);extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface);/* * Load a surface from a seekable SDL data source (memory or file.) * If 'freesrc' is non-zero, the source will be closed after being read. * Returns the new surface, or NULL if there was an error. * The new surface should be freed with SDL_FreeSurface(). */extern DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_RW(SDL_RWops *src, int freesrc);/* Convenience macro -- load a surface from a file */#define SDL_LoadBMP(file)	SDL_LoadBMP_RW(SDL_RWFromFile(file, "rb"), 1)/* * Save a surface to a seekable SDL data source (memory or file.) * If 'freedst' is non-zero, the source will be closed after being written. * Returns 0 if successful or -1 if there was an error. */extern DECLSPEC int SDLCALL SDL_SaveBMP_RW		(SDL_Surface *surface, SDL_RWops *dst, int freedst);/* Convenience macro -- save a surface to a file */#define SDL_SaveBMP(surface, file) \		SDL_SaveBMP_RW(surface, SDL_RWFromFile(file, "wb"), 1)/* * Sets the color key (transparent pixel) in a blittable surface. * If 'flag' is SDL_SRCCOLORKEY (optionally OR'd with SDL_RLEACCEL),  * 'key' will be the transparent pixel in the source image of a blit. * SDL_RLEACCEL requests RLE acceleration for the surface if present, * and removes RLE acceleration if absent. * If 'flag' is 0, this function clears any current color key. * This function returns 0, or -1 if there was an error. */extern DECLSPEC int SDLCALL SDL_SetColorKey			(SDL_Surface *surface, Uint32 flag, Uint32 key);/* * This function sets the alpha value for the entire surface, as opposed to * using the alpha component of each pixel. This value measures the range * of transparency of the surface, 0 being completely transparent to 255 * being completely opaque. An 'alpha' value of 255 causes blits to be * opaque, the source pixels copied to the destination (the default). Note * that per-surface alpha can be combined with colorkey transparency. * * If 'flag' is 0, alpha blending is disabled for the surface. * If 'flag' is SDL_SRCALPHA, alpha blending is enabled for the surface. * OR:ing the flag with SDL_RLEACCEL requests RLE acceleration for the * surface; if SDL_RLEACCEL is not specified, the RLE accel will be removed. * * The 'alpha' parameter is ignored for surfaces that have an alpha channel. */extern DECLSPEC int SDLCALL SDL_SetAlpha(SDL_Surface *surface, Uint32 flag, Uint8 alpha);/* * Sets the clipping rectangle for the destination surface in a blit. * * If the clip rectangle is NULL, clipping will be disabled. * If the clip rectangle doesn't intersect the surface, the function will * return SDL_FALSE and blits will be completely clipped.  Otherwise the * function returns SDL_TRUE and blits to the surface will be clipped to * the intersection of the surface area and the clipping rectangle. * * Note that blits are automatically clipped to the edges of the source

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品欧美一区二区三区精品久久| 国产精品视频一二| 欧美日韩日日摸| 欧美精品成人一区二区三区四区| 欧美日本视频在线| 精品久久久久久最新网址| 7777女厕盗摄久久久| 国产精品污www在线观看| 亚洲黄一区二区三区| 男人的天堂久久精品| 香蕉加勒比综合久久| 99久久精品国产导航| 欧美福利视频一区| 久久亚洲综合av| 一区二区三区四区蜜桃| 国产成人免费视频网站| 欧美日韩一区三区| 国产网红主播福利一区二区| 亚洲午夜精品一区二区三区他趣| 亚洲欧美视频一区| 免费在线观看日韩欧美| 99久久99久久精品免费观看| 在线成人免费观看| 欧美极品另类videosde| 秋霞成人午夜伦在线观看| 国产在线看一区| 欧美三级电影精品| 国产精品女同一区二区三区| 美女免费视频一区二区| 91麻豆精品国产自产在线观看一区 | 欧美天堂亚洲电影院在线播放| 日韩免费在线观看| 亚洲午夜免费福利视频| 不卡视频在线观看| 欧美大肚乱孕交hd孕妇| 青青草伊人久久| 日本国产一区二区| 国产精品夫妻自拍| 成人黄色av电影| 日本欧美肥老太交大片| 99国产一区二区三精品乱码| 久久99热这里只有精品| 亚洲午夜激情网站| www日韩大片| 欧美三级电影在线观看| 国产精品自产自拍| 午夜精品免费在线| 亚洲一区在线看| 青青草成人在线观看| 亚洲激情自拍偷拍| 精品国产亚洲一区二区三区在线观看| 成人一级视频在线观看| 性做久久久久久免费观看欧美| 2019国产精品| 久久综合五月天婷婷伊人| 国产一区二三区好的| 日韩电影一区二区三区四区| 亚洲精选在线视频| 1000精品久久久久久久久| 久久午夜国产精品| 精品对白一区国产伦| 日韩一二在线观看| 欧美大胆一级视频| 日韩一区二区免费电影| 91麻豆精品91久久久久久清纯| 欧美日韩一区二区三区在线看| 成人激情免费视频| 色婷婷av一区二区三区大白胸| 97se狠狠狠综合亚洲狠狠| 色偷偷久久人人79超碰人人澡 | 9色porny自拍视频一区二区| 久久人人爽人人爽| 在线观看亚洲精品| 欧美一区二区美女| 国产一区二区三区四区五区入口| 91同城在线观看| 国产成人鲁色资源国产91色综| 欧美v国产在线一区二区三区| 国内欧美视频一区二区 | 成人免费在线观看入口| 午夜视频久久久久久| 欧美精品久久久久久久久老牛影院| 亚洲精品久久久蜜桃| 国产综合久久久久影院| 日韩美女主播在线视频一区二区三区| 国产精品免费久久| 日韩精品一区第一页| 欧美性一二三区| 精品久久人人做人人爰| 一区二区免费看| 97精品国产露脸对白| 久久久亚洲欧洲日产国码αv| 在线日韩av片| 欧美日韩美少妇 | 色婷婷综合久久久中文字幕| 国产成a人亚洲| 成人小视频免费观看| 99精品视频在线免费观看| 蜜臀av性久久久久蜜臀aⅴ流畅| 欧美色综合网站| 在线视频你懂得一区二区三区| 国产69精品久久久久毛片| 国产成人精品三级| 成熟亚洲日本毛茸茸凸凹| 国产91精品免费| 91网站在线播放| 欧美日韩在线观看一区二区| 欧美美女黄视频| 色屁屁一区二区| 欧美日韩精品电影| 欧美日韩三级在线| 国产亚洲人成网站| 中文字幕亚洲在| 亚洲高清视频在线| 麻豆精品在线播放| 91视频.com| 2023国产精华国产精品| 成人欧美一区二区三区| 秋霞午夜鲁丝一区二区老狼| 99热在这里有精品免费| 在线综合视频播放| 亚洲视频综合在线| 激情国产一区二区| 欧美日韩免费视频| 亚洲欧洲日韩av| 精品综合免费视频观看| 亚洲精品国产视频| 国产女主播一区| 亚洲色图另类专区| 91精品国产综合久久久久久漫画| 久久机这里只有精品| 国产精品99久久久久久有的能看 | 日本一区二区免费在线| 久久精品一区二区三区av| 久久蜜桃香蕉精品一区二区三区| 日韩欧美在线影院| 欧美videossexotv100| 久久精品亚洲麻豆av一区二区| 久久蜜臀中文字幕| 国产精品视频看| 亚洲卡通欧美制服中文| 午夜婷婷国产麻豆精品| 久久精品久久99精品久久| 国产白丝精品91爽爽久久 | 日本一区二区三区电影| 亚洲精品日日夜夜| 天天综合日日夜夜精品| 国产一区二区在线观看视频| 99国产精品国产精品毛片| 色婷婷激情综合| 日韩一区二区三区精品视频| 久久天堂av综合合色蜜桃网| 亚洲欧洲性图库| 久久机这里只有精品| 99国产精品一区| 日韩欧美国产小视频| 国产精品国产馆在线真实露脸| 亚洲一级在线观看| 国产成人精品三级| 欧美日韩成人一区二区| 久久九九99视频| 丝袜美腿亚洲一区| 91在线视频官网| 精品粉嫩超白一线天av| 一区二区三区电影在线播| 国产一区二区调教| 欧美日韩国产综合久久| 中文字幕欧美区| 日韩黄色免费网站| fc2成人免费人成在线观看播放| 日韩欧美国产麻豆| 一区二区三区小说| 成人毛片老司机大片| 91精品国产品国语在线不卡| 中文一区二区完整视频在线观看| 蜜臀av性久久久久蜜臀av麻豆| 在线精品视频一区二区| 国产亚洲欧美一级| 欧美a级一区二区| 色欧美乱欧美15图片| 中文在线一区二区| 国产原创一区二区三区| 777a∨成人精品桃花网| 亚洲一区二区不卡免费| 91在线云播放| 国产精品国产三级国产三级人妇 | 日本高清不卡视频| 久久这里只有精品视频网| 日日欢夜夜爽一区| 色婷婷亚洲一区二区三区| 国产精品久久99| 成人av资源站| 国产精品日产欧美久久久久| 国产69精品久久久久毛片 | 激情图片小说一区| 91麻豆精品国产91久久久| 亚洲电影你懂得| 欧美视频在线一区| 亚洲成人动漫av| 91麻豆精品国产无毒不卡在线观看|