wrap_Canvas.cpp 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * Copyright (c) 2006-2016 LOVE Development Team
  3. *
  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. *
  8. * Permission is granted to anyone to use this software for any purpose,
  9. * including commercial applications, and to alter it and redistribute it
  10. * freely, subject to the following restrictions:
  11. *
  12. * 1. The origin of this software must not be misrepresented; you must not
  13. * claim that you wrote the original software. If you use this software
  14. * in a product, an acknowledgment in the product documentation would be
  15. * appreciated but is not required.
  16. * 2. Altered source versions must be plainly marked as such, and must not be
  17. * misrepresented as being the original software.
  18. * 3. This notice may not be removed or altered from any source distribution.
  19. **/
  20. #include "wrap_Canvas.h"
  21. #include "Graphics.h"
  22. namespace love
  23. {
  24. namespace graphics
  25. {
  26. namespace opengl
  27. {
  28. Canvas *luax_checkcanvas(lua_State *L, int idx)
  29. {
  30. return luax_checktype<Canvas>(L, idx, GRAPHICS_CANVAS_ID);
  31. }
  32. int w_Canvas_getFormat(lua_State *L)
  33. {
  34. Canvas *canvas = luax_checkcanvas(L, 1);
  35. Canvas::Format format = canvas->getTextureFormat();
  36. const char *str;
  37. if (!Canvas::getConstant(format, str))
  38. return luaL_error(L, "Unknown Canvas format.");
  39. lua_pushstring(L, str);
  40. return 1;
  41. }
  42. int w_Canvas_getMSAA(lua_State *L)
  43. {
  44. Canvas *canvas = luax_checkcanvas(L, 1);
  45. lua_pushinteger(L, canvas->getMSAA());
  46. return 1;
  47. }
  48. static const luaL_Reg w_Canvas_functions[] =
  49. {
  50. { "getFormat", w_Canvas_getFormat },
  51. { "getMSAA", w_Canvas_getMSAA },
  52. { 0, 0 }
  53. };
  54. extern "C" int luaopen_canvas(lua_State *L)
  55. {
  56. return luax_register_type(L, GRAPHICS_CANVAS_ID, "Canvas", w_Texture_functions, w_Canvas_functions, nullptr);
  57. }
  58. } // opengl
  59. } // graphics
  60. } // love