Merge branch 'master' of https://github.com/supertuxkart/stk-code into lensflare
This commit is contained in:
commit
b70f2cd176
@ -127,7 +127,7 @@ namespace video
|
||||
} // end namespace irr
|
||||
|
||||
|
||||
#if defined(_IRR_WINDOWS_API_)
|
||||
#if defined(_IRR_WINDOWS_API_) && !defined(_IRR_STATIC_LIB_)
|
||||
|
||||
BOOL APIENTRY DllMain( HANDLE hModule,
|
||||
DWORD ul_reason_for_call,
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "config/stk_config.hpp"
|
||||
#include "guiengine/engine.hpp"
|
||||
#include "graphics/callbacks.hpp"
|
||||
#include "graphics/glwrap.hpp"
|
||||
#include "graphics/irr_driver.hpp"
|
||||
#include "graphics/particle_kind_manager.hpp"
|
||||
#include "graphics/shaders.hpp"
|
||||
@ -37,7 +38,7 @@
|
||||
#include "modes/world.hpp"
|
||||
#include "tracks/track.hpp"
|
||||
#include "utils/log.hpp"
|
||||
#include "graphics/glwrap.hpp"
|
||||
#include "utils/vs.hpp"
|
||||
|
||||
#include <IMaterialRendererServices.h>
|
||||
#include <ISceneNode.h>
|
||||
@ -74,7 +75,7 @@ Material::Material(const XMLNode *node, bool deprecated)
|
||||
node->get("clampv", &b); if (b) m_clamp_tex |= VCLAMP; //blender 2.4 style
|
||||
node->get("clampV", &b); if (b) m_clamp_tex |= VCLAMP; //blender 2.5 style
|
||||
|
||||
|
||||
|
||||
std::string s;
|
||||
//node->get("adjust-image", &s );
|
||||
//if(s=="premultiply")
|
||||
@ -586,7 +587,7 @@ void Material::initParticlesEffect(const XMLNode *node)
|
||||
try
|
||||
{
|
||||
particles = pkm->getParticles(base.c_str());
|
||||
|
||||
|
||||
if (particles == NULL)
|
||||
{
|
||||
Log::warn("Material::initParticlesEffect",
|
||||
|
@ -296,7 +296,8 @@ video::ITexture* IconButtonWidget::getDeactivatedTexture(video::ITexture* textur
|
||||
|
||||
std::string name = texture->getName().getPath().c_str();
|
||||
name += "_disabled";
|
||||
t = irr_driver->getTexture(name);
|
||||
t = irr_driver->getTexture(name, /*premul*/false, /*prediv*/false,
|
||||
/*compain_if_not_found*/false);
|
||||
if (t == NULL)
|
||||
{
|
||||
SColor c;
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "log.hpp"
|
||||
#include <string.h>
|
||||
|
||||
#if defined(WIN32) && !defined(DEBUG)
|
||||
#if defined(WIN32) && !defined(DEBUG) && !defined(__MINGW32__)
|
||||
// --------------------- Windows version -----------------
|
||||
#include <Windows.h>
|
||||
#include <DbgHelp.h>
|
||||
@ -76,7 +76,7 @@
|
||||
_In_ DWORD maxStringLength,
|
||||
_In_ DWORD flags
|
||||
);
|
||||
|
||||
|
||||
namespace CrashReporting
|
||||
{
|
||||
void getCallStackWithContext(std::string& callstack, PCONTEXT pContext);
|
||||
@ -88,7 +88,7 @@
|
||||
getCallStackWithContext(callstack, pContext);
|
||||
else
|
||||
getCallStack(callstack);
|
||||
|
||||
|
||||
std::string msg = "SuperTuxKart crashed!\n"
|
||||
"Please hit Ctrl+C to copy to clipboard and signal the problem\n"
|
||||
"to the developers on our forum: http://forum.freegamedev.net/viewforum.php?f=16\n"
|
||||
@ -164,7 +164,7 @@
|
||||
FreeLibrary(hImageHlpDll); \
|
||||
return; \
|
||||
}
|
||||
|
||||
|
||||
GET_FUNC_PTR(SymCleanup )
|
||||
GET_FUNC_PTR(SymFunctionTableAccess64 )
|
||||
GET_FUNC_PTR(SymGetLineFromAddr64 )
|
||||
@ -302,7 +302,7 @@
|
||||
FreeLibrary(hImageHlpDll);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void getCallStack(std::string& callstack)
|
||||
{
|
||||
// Get the current CONTEXT
|
||||
|
Loading…
Reference in New Issue
Block a user