Added simple texture viewer tool.

This commit is contained in:
Branimir Karadžić
2016-04-21 22:12:35 -07:00
parent b2c59cf949
commit a94089e29f
24 changed files with 1497 additions and 48 deletions

View File

@@ -65,8 +65,9 @@ solution "bgfx"
language "C++"
startproject "example-00-helloworld"
BGFX_DIR = path.getabsolute("..")
BX_DIR = os.getenv("BX_DIR")
MODULE_DIR = path.getabsolute("../")
BGFX_DIR = path.getabsolute("..")
BX_DIR = os.getenv("BX_DIR")
local BGFX_BUILD_DIR = path.join(BGFX_DIR, ".build")
local BGFX_THIRD_PARTY_DIR = path.join(BGFX_DIR, "3rdparty")
@@ -405,5 +406,6 @@ if _OPTIONS["with-tools"] then
group "tools"
dofile "shaderc.lua"
dofile "texturec.lua"
dofile "texturev.lua"
dofile "geometryc.lua"
end