0f7bbfcf0e
Add separate cl_movement cvar to enable/disable reporting input sequences to DP servers (which use different pathways). Does not affect other protocols. This is separate from cl_nopred but will usually have the same result in the long run. Fixed movevalues for DPP7 clients, if they try using prediction they should now (mostly) get the same values that DP normally uses for QW servers. Reworked sky overrides somewhat. Now uses skyboxes where possible. Fixed dpcompat_makeshitup a little, for better compat. Fixed echo $foo$bar not exanding bar. Try to fix the meanings of vid_hardwaregamma. Fixes for builtins/features/etc that apparently only xonotic uses. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5143 fc73d0e0-1445-4013-8a0c-d673dee63da5
33 lines
No EOL
1.3 KiB
Makefile
33 lines
No EOL
1.3 KiB
Makefile
CC=i686-pc-mingw32-gcc
|
|
|
|
all:
|
|
|
|
NAMES= fixedemu altwater bloom_blur bloom_filter bloom_final colourtint crepuscular_opaque crepuscular_rays crepuscular_sky depthonly default2d defaultadditivesprite defaultskin defaultsky defaultskybox defaultfill defaultsprite defaultwall defaultwarp defaultgammacb drawflat_wall lpp_depthnorm lpp_light lpp_wall postproc_fisheye postproc_panorama postproc_laea postproc_stereographic postproc_equirectangular fxaa underwaterwarp menutint terrain rtlight
|
|
|
|
|
|
ALLNAMES+=$(foreach v,$(NAMES),glsl/$v.glsl)
|
|
ALLNAMES+=$(foreach v,$(NAMES),hlsl9/$v.hlsl)
|
|
ALLNAMES+=$(foreach v,$(NAMES),hlsl11/$v.hlsl)
|
|
ALLNAMES:=$(realpath $(ALLNAMES))
|
|
|
|
VKNAMES=$(realpath $(foreach v,$(NAMES),vulkan/$v.glsl))
|
|
VKNAMES+=postproc_fisheye
|
|
VKNAMES:=$(foreach v,$(VKNAMES),vulkanblobs/$(notdir $(basename $v)).fvb)
|
|
ALLNAMES+=$(VKNAMES)
|
|
|
|
generatebuiltinsl: generatebuiltinsl.c
|
|
$(CC) $< -o $@
|
|
|
|
makevulkanblob: makevulkanblob.c
|
|
$(CC) $< -o $@
|
|
|
|
vulkanblobs/%.fvb: vulkan/%.glsl makevulkanblob vulkan/sys/defs.h vulkan/sys/fog.h vulkan/sys/offsetmapping.h vulkan/sys/skeletal.h
|
|
./makevulkanblob $< $@
|
|
|
|
#vulkanblobs/%.fvb: glsl/%.glsl makevulkanblob vulkan/sys/defs.h vulkan/sys/fog.h vulkan/sys/offsetmapping.h vulkan/sys/skeletal.h
|
|
# ./makevulkanblob $< $@
|
|
|
|
|
|
all: generatebuiltinsl $(ALLNAMES)
|
|
which glslangValidator
|
|
./generatebuiltinsl
|