Atlas - SDL_yuv_sw_c.h

Home / ext / SDL2 / src / render Lines: 1 | Size: 2797 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)]
[FILE BEGIN]
1/* 2 Simple DirectMedia Layer 3 Copyright (C) 1997-2018 Sam Lantinga <[email protected]> 4 5 This software is provided 'as-is', without any express or implied 6 warranty. In no event will the authors be held liable for any damages 7 arising from the use of this software. 8 9 Permission is granted to anyone to use this software for any purpose, 10 including commercial applications, and to alter it and redistribute it 11 freely, subject to the following restrictions: 12 13 1. The origin of this software must not be misrepresented; you must not 14 claim that you wrote the original software. If you use this software 15 in a product, an acknowledgment in the product documentation would be 16 appreciated but is not required. 17 2. Altered source versions must be plainly marked as such, and must not be 18 misrepresented as being the original software. 19 3. This notice may not be removed or altered from any source distribution. 20*/ 21#include "../SDL_internal.h" 22 23#include "SDL_video.h" 24 25/* This is the software implementation of the YUV texture support */ 26 27struct SDL_SW_YUVTexture 28{ 29 Uint32 format; 30 Uint32 target_format; 31 int w, h; 32 Uint8 *pixels; 33 34 /* These are just so we don't have to allocate them separately */ 35 Uint16 pitches[3]; 36 Uint8 *planes[3]; 37 38 /* This is a temporary surface in case we have to stretch copy */ 39 SDL_Surface *stretch; 40 SDL_Surface *display; 41}; 42 43typedef struct SDL_SW_YUVTexture SDL_SW_YUVTexture; 44 45SDL_SW_YUVTexture *SDL_SW_CreateYUVTexture(Uint32 format, int w, int h); 46int SDL_SW_QueryYUVTexturePixels(SDL_SW_YUVTexture * swdata, void **pixels, 47 int *pitch); 48int SDL_SW_UpdateYUVTexture(SDL_SW_YUVTexture * swdata, const SDL_Rect * rect, 49 const void *pixels, int pitch); 50int SDL_SW_UpdateYUVTexturePlanar(SDL_SW_YUVTexture * swdata, const SDL_Rect * rect, 51 const Uint8 *Yplane, int Ypitch, 52 const Uint8 *Uplane, int Upitch, 53 const Uint8 *Vplane, int Vpitch); 54int SDL_SW_LockYUVTexture(SDL_SW_YUVTexture * swdata, const SDL_Rect * rect, 55 void **pixels, int *pitch); 56void SDL_SW_UnlockYUVTexture(SDL_SW_YUVTexture * swdata); 57int SDL_SW_CopyYUVToRGB(SDL_SW_YUVTexture * swdata, const SDL_Rect * srcrect, 58 Uint32 target_format, int w, int h, void *pixels, 59 int pitch); 60void SDL_SW_DestroyYUVTexture(SDL_SW_YUVTexture * swdata); 61 62/* FIXME: This breaks on various versions of GCC and should be rewritten using intrinsics */ 63#if 0 /* (__GNUC__ > 2) && defined(__i386__) && __OPTIMIZE__ && SDL_ASSEMBLY_ROUTINES && !defined(__clang__) */ 64#define USE_MMX_ASSEMBLY 1 65#endif 66 67/* vi: set ts=4 sw=4 expandtab: */ 68
[FILE END]
(C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.