summaryrefslogtreecommitdiff
path: root/VisualC
AgeCommit message (Collapse)AuthorFilesLines
2014-03-09Visual Studio 2013 project updatesSam Lantinga2-482/+483
2014-02-20Fixes #2408, VS2013: several projects of release build are not builtGabriel Jacobo1-9/+19
Patch by Hiroyuki Iwatsuki
2014-02-19Fixes #2403, add SDL2 dependency to testgles2 (thanks Hiroyuki Iwatsuki)Gabriel Jacobo1-0/+5
2013-12-09Implemented the Dynamic API magic.Ryan C. Gordon4-0/+28
2013-11-22OpenGL ES support for WindowsGabriel Jacobo9-472/+1452
2013-11-16Fixed bug 2232 - Version Mismatch in VS2013 Solution FileSam Lantinga5-11/+6
Joe LeVeque Line 3 of SDL_VS2013.sln file reads "# Visual Studio 2012" instead of "# Visual Studio 2013" which causes Windows to associate the file with Visual Studio 2012, if installed, instead of Visual Studio 2013.
2013-11-14Fixed visualtest build on VS2012Apoorv Upreti1-0/+5
SDL2, SDL2main and SDL2test had to be added as dependencies to the testquit project to get it to build properly.
2013-11-10Added project files for Visual Studio 2013Sam Lantinga21-0/+5093
Added /arch:SSE code generation option to prevent SSE2 floating point functions from being implicitly called (which aren't linked in SDL)
2013-11-10Added Apoorv Upreti's GSoC2013 work: visual test suite.Ryan C. Gordon3-0/+571
See visualtest/README.txt for details.
2013-10-14Fixed project conflict during commitSam Lantinga1-465/+678
2013-10-14Adding static lib to SDL builds on Windows.Sam Lantinga1-255/+417
CR: SamL
2013-08-20Added SDL_GetBasePath() and SDL_GetPrefPath() in new filesystem module.Ryan C. Gordon3-1/+13
2013-08-14Fix bug 2034: replace printf by SDL_Log in tests; update loopwave VS ↵Andreas Schiffler2-9/+17
solution: copy missing dependency
2013-08-07SDL_*Parachute() are no-ops, remove them.Ryan C. Gordon3-12/+0
2013-08-07Fix building the tests with Visual Studio 2012 (thanks Isaac!)Sam Lantinga3-8/+8
2013-07-23Finished updating testoverlay2 for the new API and added it to the Visual ↵Sam Lantinga3-469/+485
Studio 2010 projects
2013-07-22Fix bug 1494: add missing test projects to VS2010/VS2010 solutionAndreas Schiffler10-375/+1334
2013-07-10Implemented an API for thread-local storage: SDL_TLSCreate(), SDL_TLSSet(), ↵Sam Lantinga3-2/+8
SDL_TLSGet()
2013-07-09Backout hg changset 898992405fa7; lots of things still use SDL_types.h. :/Ryan C. Gordon3-0/+6
Will remove this again at some point in the future, though.
2013-07-08Removed deprecated SDL_types.h header.Ryan C. Gordon3-6/+0
Fixes Bugzilla #1945.
2013-06-28Added testgamecontroller to the Visual Studio 2012 solution.Sam Lantinga2-0/+247
2013-06-23Add VS Express Edition sln files (drop the unsupported solution folders for ↵Andreas Schiffler2-0/+387
tests); update VisualC documentation
2013-06-05Removed obsolete NoStdio configurations.Sam Lantinga1-55/+0
2013-06-05Added testautomation to the Visual Studio 2008 project.Sam Lantinga2-0/+294
2013-06-03Add missing VS2012 test projects; update VS2010 and VS2012 solutions; update ↵Andreas Schiffler8-158/+1057
keybord suite for VS compiler warnings
2013-06-03Remove deprecated/deleted VS test projectsAndreas Schiffler20-4373/+0
2013-05-30Fix bug 1492: Visual Studio builds sdl.lib and sdl.dll for version 2.0 ↵Andreas Schiffler15-74/+74
(contributed by Jan Reitz); update SDL_bool handling in test_common to fix VS compiler warnings
2013-05-24Fixed Windows buildSam Lantinga2-14/+16
2013-05-18Deprecate test/automated and test/test-automation (replaced by ↵Andreas Schiffler3-645/+0
test/testautomation*.*)
2013-05-06Disable C++ exceptions, use debug format that includes debug information in ↵Sam Lantinga9-361/+407
the static libraries, and standardize on Program Database / Program Database with edit and continue for the DLL debug format.
2013-05-01Add pixels test suite; add a test to pixel suite; minor updates to test code ↵Andreas Schiffler2-2/+4
to make VisualStudio happy
2013-03-13Reformat SDL_VS2010.sln so WindowsExplorer VS type detection works againAndreas Schiffler1-197/+160
2013-03-03Fied bug 1719 - Remove unnecessary PrecompiledHeaderOutputFile.Sam Lantinga4-7/+1
Hiroyuki Iwatsuki Patch for removing unnecessary PrecompiledHeaderOutputFile.
2013-02-27Generate debug info for all configurations on all platformsSam Lantinga3-1780/+487
Turned off C++ exception handling for all configurations and all platforms Turned on comdat folding and optimized references for all optimized builds CR: Bruce Dawson
2013-02-19Removed SDL_input.h from various projectsSam Lantinga3-11/+1
2013-02-13New SDL_MSBIndex, updated VS projects, cleanup gamecontroller.Jørgen P. Tjernø32-5549/+6926
- Updated Visual Studio 2010 project with SDL 2.0 library names - Don't use a 256 byte LUT, but rather <32 bytes of data on the stack. - Cleanups in SDL_gamecontroller.h
2013-02-12Fix linker error for Win32 tests.Jørgen P. Tjernø2-2/+4
This adds the new testautomation_main.c to the VisualC projects.
2013-02-12Don't clobber refcounting in SDL_Init.Jørgen P. Tjernø3-1/+7
- Fixes bug 1712 by not overwriting SDL_SubsystemRefCount in SDL_Init. - Removes the SDL_initialized variable, and makes SDL_SubsystemRefCount the canonical source of truth for whether or not a subsystem has been initialized. - Refactors SDL_InitSubSystem and SDL_QuitSubSystem to use helper functions to manage refcount. - Adds automated tests for SDL_Init/Quit*. - Adds SDL_bits.h which contains SDL_MostSignificantBitIndex.
2013-02-08Add SDL_test test suite; add fuzzer test cases; fix fuzzer bug; fix compiler ↵Andreas Schiffler2-0/+2
warnings
2013-01-14Added timer test suiteAndreas Schiffler2-0/+2
2013-01-06Add new test suite (mouse) with a few new testsAndreas Schiffler2-0/+2
2013-01-06Add new test suites (events, keyboard, syswm, video) with a few new tests eachAndreas Schiffler2-0/+8
2012-12-31Fix VS buildbot buildsAndreas Schiffler6-18/+6
2012-12-31Fix VS2010 and VS2012 solutions.Andreas Schiffler8-6/+24
2012-12-31Fixed building tests with Visual Studio 2008Sam Lantinga7-26/+542
2012-12-30Add missing VS project dependencies to fix buildbot build; fix surface ↵Andreas Schiffler4-0/+46
suite; minor update to rwops suite
2012-12-30Add testautomation to VS project; remove automated from VS project; minor ↵Andreas Schiffler5-41/+388
update to platform suite
2012-12-22Test lib updates: updated harness to support filtering, added surface ↵Andreas Schiffler2-0/+4
comparer, updated interface to test images; added Render test suite from GSOC project
2012-12-20Add image data definitions (for render tests) to test libAndreas Schiffler2-0/+12
2012-12-09Added existing common.c/.h functions to test lib; minor assert refactoringAndreas Schiffler2-0/+4