Skip to content

Instantly share code, notes, and snippets.

@spacepluk
Created June 27, 2018 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spacepluk/709f1860a42901671974c2dc9c32c0b3 to your computer and use it in GitHub Desktop.
Save spacepluk/709f1860a42901671974c2dc9c32c0b3 to your computer and use it in GitHub Desktop.
diff --git a/examples/20-nanovg/nanovg.cpp b/examples/20-nanovg/nanovg.cpp
index 8d0e91ee..bd38bc36 100644
--- a/examples/20-nanovg/nanovg.cpp
+++ b/examples/20-nanovg/nanovg.cpp
@@ -1264,7 +1264,7 @@ public:
// Set view 0 clear state.
bgfx::setViewClear(0
, BGFX_CLEAR_COLOR|BGFX_CLEAR_DEPTH
- , 0x303030ff
+ , 0x00000000
, 1.0f
, 0
);
diff --git a/examples/common/entry/entry_glfw.cpp b/examples/common/entry/entry_glfw.cpp
index 5e81dd9a..257bcb6c 100644
--- a/examples/common/entry/entry_glfw.cpp
+++ b/examples/common/entry/entry_glfw.cpp
@@ -409,7 +409,8 @@ namespace entry
glfwSetJoystickCallback(joystickCb);
- glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
+ glfwWindowHint(GLFW_TRANSPARENT_FRAMEBUFFER, GLFW_TRUE);
+ glfwWindowHint(GLFW_DECORATED, GLFW_FALSE);
WindowHandle handle = { m_windowAlloc.alloc() };
m_windows[0] = glfwCreateWindow(ENTRY_DEFAULT_WIDTH
diff --git a/makefile b/makefile
index 5997d37f..a5ee768c 100644
--- a/makefile
+++ b/makefile
@@ -91,7 +91,7 @@ asmjs-release: .build/projects/gmake-asmjs ## Build - Emscripten Release
asmjs: asmjs-debug asmjs-release ## Build - Emscripten Debug and Release
.build/projects/gmake-linux:
- $(GENIE) --with-tools --with-combined-examples --with-shared-lib --gcc=linux-gcc gmake
+ $(GENIE) --with-tools --with-glfw --with-combined-examples --with-shared-lib --gcc=linux-gcc gmake
linux-debug64: .build/projects/gmake-linux ## Build - Linux x64 Debug
$(MAKE) -R -C .build/projects/gmake-linux config=debug64
linux-release64: .build/projects/gmake-linux ## Build - Linux x64 Release
diff --git a/scripts/genie.lua b/scripts/genie.lua
index fd6f21f5..935177ae 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -164,7 +164,7 @@ function exampleProjectDefaults()
if _OPTIONS["with-glfw"] then
defines { "ENTRY_CONFIG_USE_GLFW=1" }
- links { "glfw3" }
+ links { "glfw" }
configuration { "linux or freebsd" }
links {
diff --git a/scripts/texturev.lua b/scripts/texturev.lua
index c2425559..255783ca 100644
--- a/scripts/texturev.lua
+++ b/scripts/texturev.lua
@@ -42,7 +42,7 @@ project ("texturev")
if _OPTIONS["with-glfw"] then
defines { "ENTRY_CONFIG_USE_GLFW=1" }
links {
- "glfw3"
+ "glfw"
}
configuration { "linux or freebsd" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment