Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/supertuxkart/stk-code
Browse files Browse the repository at this point in the history
  • Loading branch information
samuncle committed Jun 16, 2014
2 parents f8f0a46 + 9cc34fd commit 6175d9f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions data/shaders/sunlightshadow.frag
Expand Up @@ -16,6 +16,7 @@ uniform mat4 ProjectionMatrix;
uniform mat4 InverseViewMatrix;
uniform mat4 InverseProjectionMatrix;
uniform mat4 ShadowViewProjMatrixes[4];
uniform vec2 screen;
#else
layout (std140) uniform MatrixesData
{
Expand Down
8 changes: 5 additions & 3 deletions src/guiengine/scalable_font.hpp
Expand Up @@ -5,17 +5,19 @@
#ifndef __C_GUI_FONT_H_INCLUDED__
#define __C_GUI_FONT_H_INCLUDED__

#include "IrrCompileConfig.h"
#include "utils/leak_check.hpp"

#include "IrrCompileConfig.h"
#include "IGUIFontBitmap.h"
#include "irrString.h"
#include "irrMap.h"
#include "IXMLReader.h"
#include "IReadFile.h"
#include "irrArray.h"
#include <map>

#include "utils/leak_check.hpp"

#include <map>
#include <string>

namespace irr
{
Expand Down
2 changes: 1 addition & 1 deletion tools/font_tool/CMakeLists.txt
Expand Up @@ -14,10 +14,10 @@ if(FONT_TOOL)
if(FREETYPE_FOUND)
include_directories(${FREETYPE_INCLUDE_DIRS})
add_executable(font_tool CFontTool.cpp main.cpp)
target_link_libraries(font_tool stkirrlicht)
target_link_libraries(font_tool ${FREETYPE_LIBRARIES})
target_link_libraries(font_tool ${X11_Xft_LIB} Xxf86vm)
target_link_libraries(font_tool ${OPENGL_LIBRARIES})
target_link_libraries(font_tool stkirrlicht)
target_link_libraries(font_tool ${FONTCONFIG_LIBRARY})
else()
message(STATUS "Freetype was not found, the font tool won't be built (only useful for developers)")
Expand Down

0 comments on commit 6175d9f

Please sign in to comment.