You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
1.3 KiB

UWP Support Overhaul (#819) * Working build * Fix build again, stop deleting files * Hotfix crash, needs investigating * Remove VS2015.UWP, I cannot update the project * Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet. * Implemented a ton more things, added BaseApp.h to provide common code to UWP apps. * Remove constant window dimensions * Enable and Disable cursor support. * Actually use mouse delta * Gamepad Support * Cleaning and small tweaks * Restore original example. * Update comment * Use 'Messages' to handle the cursor functions so code is more portable. * Comment * Comment unused message fields and use vector for mouse pos instead. * Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h * Working build * Fix build again, stop deleting files * Hotfix crash, needs investigating * Remove VS2015.UWP, I cannot update the project * Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet. * Implemented a ton more things, added BaseApp.h to provide common code to UWP apps. * Remove constant window dimensions * Enable and Disable cursor support. * Actually use mouse delta * Gamepad Support * Cleaning and small tweaks * Restore original example. * Update comment * Use 'Messages' to handle the cursor functions so code is more portable. * Comment * Comment unused message fields and use vector for mouse pos instead. * Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h * Tested some desktop stuff and added projection matrix updates for window resizing. * Fixed big bad mouse bug * Fix alt buttons and add hack to combat flickery key presses (far from perfect) * Remove debug code * Final commit * Well, so I thought * Wow, i am bad * Remove packages folder * Remove useless include * Apply requested changes and fix linux build * Try to stop packages folder * Have we fixed the formatting properly? * Third time's the charm? * Where did this come from? * Re-fix * Autoformat is gonna kill * Fixed XBOX ONE Support * Fix tabs
5 years ago
  1. # Ignore generated files
  2. # ...
  3. # Ignore VIM's backup generated files
  4. *.swp
  5. *.swo
  6. *~
  7. # Ignore thumbnails created by windows
  8. Thumbs.db
  9. # Ignore files build by Visual Studio
  10. # *.obj --> Can be confused with 3d model!
  11. *.pdb
  12. *.aps
  13. *.user
  14. # *.vcproj
  15. # *.vcxproj*
  16. # *.sln
  17. *.vspscc
  18. *_i.c
  19. *.i
  20. *.icf
  21. *_p.c
  22. *.ncb
  23. *.suo
  24. *.tlb
  25. *.tlh
  26. *.bak
  27. *.cache
  28. *.ilk
  29. *.log
  30. .vs
  31. [Bb]in
  32. [Dd]ebug/
  33. *.sbr
  34. *.sdf
  35. obj/
  36. [R]elease/
  37. _ReSharper*/
  38. [Tt]est[Rr]esult*
  39. ipch/
  40. *.opensdf
  41. *.db
  42. *.opendb
  43. packages/
  44. # Ignore compiled binaries
  45. *.o
  46. *.exe
  47. *.a
  48. *.bc
  49. *.so
  50. # Ignore all examples files
  51. examples/*
  52. # Unignore all examples dirs
  53. !examples/*/
  54. # Unignore all examples files with extension
  55. !examples/*.c
  56. !examples/*.png
  57. # Unignore examples Makefile
  58. !examples/Makefile
  59. !examples/Makefile.Android
  60. !examples/raylib_compile_execute.bat
  61. !examples/raylib_makefile_example.bat
  62. # Ignore files build by xcode
  63. *.mode*v*
  64. *.pbxuser
  65. *.xcbkptlist
  66. *.xcscheme
  67. *.xcworkspacedata
  68. *.xcuserstate
  69. *.xccheckout
  70. xcschememanagement.plist
  71. .DS_Store
  72. ._.*
  73. xcuserdata/
  74. DerivedData/
  75. # Jetbrains project
  76. .idea/
  77. cmake-build-*/
  78. # CMake stuff
  79. CMakeCache.txt
  80. CMakeFiles
  81. CMakeScripts
  82. Testing
  83. cmake_install.cmake
  84. install_manifest.txt
  85. compile_commands.json
  86. CTestTestfile.cmake
  87. build
  88. # Unignore These makefiles...
  89. !examples/CMakeLists.txt
  90. # Ignore GNU global tags
  91. GPATH
  92. GRTAGS
  93. GTAGS