summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/D3D/D3DShader.cpp
AgeCommit message (Collapse)Author
2015-06-04Use PanicAlertT instead of PanicAlert when appropriateJosJuice
I tried to change messages that contained instructions for users, while avoiding messages that are so technical that most users wouldn't understand them even if they were in the right language.
2015-05-25Set copyright year to when a file was createdTillmann Karras
2015-05-25Update license headers to GPLv2+Tillmann Karras
2014-07-07D3D: Use std::strings for Compile[x]Shader and CompileAndCreate[x]ShaderLioncash
With strings, we don't need to care about passing in a length, since it internally stores it. So now, we don't even need a length parameter for these functions anymore as well. This also kills off some sprintf_s calls.
2014-06-18Kill off replaceable usages of s[n]printf.Lioncash
2014-05-10D3D: Don't pass D3D10_SHADER_WARNINGS_ARE_ERRORS to the compiler in debug ↵Shawn Hoffman
builds. For quite a while this has been causing integer division to generate a warning as error, blocking shader compiling. This means probably no one has even been running D3D in debug builds... I tried disabling the warning with a #pragma, but it doesn't seem to apply when this flag is used.
2014-03-09clang-modernize -use-nullptrTillmann Karras
and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine
2014-02-18Convert all includes to relative paths.Lioncash
2013-12-31Remove unnecessary Src/ foldersJasper St. Pierre