/project/jni/sdl-1.3/src/video/nds/SDL_ndsvideo.h

https://github.com/aichunyu/FFPlayer · C Header · 59 lines · 25 code · 11 blank · 23 comment · 0 complexity · 9e2dc86645fef0fb1544f73cbd11b20a MD5 · raw file

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. #include "SDL_config.h"
  19. #ifndef _SDL_ndsvideo_h
  20. #define _SDL_ndsvideo_h
  21. #include "../SDL_sysvideo.h"
  22. #include "SDL_ndswindow.h"
  23. #define SCREEN_GAP 92 /* line-equivalent gap between the 2 screens */
  24. /* Per Window information. */
  25. struct NDS_WindowData {
  26. struct {
  27. int bg_id;
  28. void *vram_pixels; /* where the pixel data is stored (a pointer into VRAM) */
  29. void *pixels; /* area in user frame buffer */
  30. int length;
  31. } main, sub;
  32. int pitch, bpp; /* useful information about the texture */
  33. struct {
  34. int x, y;
  35. } scale; /* x/y stretch (24.8 fixed point) */
  36. struct {
  37. int x, y;
  38. } scroll; /* x/y offset */
  39. int rotate; /* -32768 to 32767, texture rotation */
  40. /* user frame buffer - todo: better way to do double buffering */
  41. void *pixels;
  42. int pixels_length;
  43. };
  44. #endif /* _SDL_ndsvideo_h */
  45. /* vi: set ts=4 sw=4 expandtab: */