diff options
author | 2023-09-05 17:10:24 +0200 | |
---|---|---|
committer | 2023-09-06 01:10:24 +1000 | |
commit | 1c61ccfe840cdae7a9f92292946a45f3b47e2412 (patch) | |
tree | b56d4b69b96e314abcf56407da44705a602727f1 /src/osd | |
parent | b2c399c61d65063ae95e8387d34b098e9516b1a9 (diff) |
Updated bgfx, bx and bimg to current upstream versions. (#11493)
* Reverted "macOS, iOS: Removed OpenGL/OpenGLES support. (commit 4693983242a698eaafed87faf4ffef1789adc8f9).
* Reverted "Fix macOS build" (commit ce2c2c13eda7d699051f75f598e740a447343a88).
* Reverted "macOS: Fixed deprecated warnings." (commit 10a8cb61f882ebc9bb376ee2341d003880b7037f).
* Added bgfx/README.mame explaining deviations from upstream.
Diffstat (limited to 'src/osd')
-rw-r--r-- | src/osd/modules/render/bgfx/shaders/shader.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/osd/modules/render/bgfx/shaders/shader.mk b/src/osd/modules/render/bgfx/shaders/shader.mk index e63d171a3ca..d12c1ed7f25 100644 --- a/src/osd/modules/render/bgfx/shaders/shader.mk +++ b/src/osd/modules/render/bgfx/shaders/shader.mk @@ -57,14 +57,14 @@ else ADDITIONAL_INCLUDES?= ifeq ($(TARGET), 0) -VS_FLAGS=--platform windows -p vs_3_0 -O 3 -FS_FLAGS=--platform windows -p ps_3_0 -O 3 +VS_FLAGS=--platform windows -p s_3_0 -O 3 +FS_FLAGS=--platform windows -p s_3_0 -O 3 SHADER_PATH=shaders/dx9/$(SHADERS_DIR) else ifeq ($(TARGET), 1) -VS_FLAGS=--platform windows -p vs_5_0 -O 3 -FS_FLAGS=--platform windows -p ps_5_0 -O 3 -CS_FLAGS=--platform windows -p cs_5_0 -O 1 +VS_FLAGS=--platform windows -p s_5_0 -O 3 +FS_FLAGS=--platform windows -p s_5_0 -O 3 +CS_FLAGS=--platform windows -p s_5_0 -O 1 SHADER_PATH=shaders/dx11/$(SHADERS_DIR) else ifeq ($(TARGET), 2) |