Skip to content

Commit

Permalink
Fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
godlikepanos committed May 6, 2019
1 parent 3f20ed4 commit 0a55f31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -13,6 +13,7 @@ packages:
- cmake
- libvulkan-dev
- libegl1-mesa-dev
- libx11-xcb-dev

matrix:
include:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -60,6 +60,8 @@ Prerequisites:
- Cmake 3.0 and up
- VulkanSDK version 1.1.x and up
- Add an environment variable named `VULKAN_SDK` that points to the installation path of VulkanSDK
- Python 3.0 and up
- Make sure that the python executable's location is in `PATH` environment variable
- Microsoft Visual Studio 2017 and up

To build the release version open `PowerShell` and type:
Expand Down
2 changes: 1 addition & 1 deletion src/anki/renderer/TileAllocator.cpp
Expand Up @@ -16,7 +16,7 @@ class TileAllocator::Tile
U64 m_lightUuid = 0;
U32 m_lightDrawcallCount = 0;
Array<U16, 4> m_viewport = {};
Array<U16, 4> m_subTiles = {MAX_U16, MAX_U16, MAX_U16, MAX_U16};
Array<U16, 4> m_subTiles = {{MAX_U16, MAX_U16, MAX_U16, MAX_U16}};
U16 m_superTile = MAX_U16;
U8 m_lightLod = 0;
U8 m_lightFace = 0;
Expand Down

0 comments on commit 0a55f31

Please sign in to comment.