mirror of
https://github.com/DrBeef/QuakeQuest.git
synced 2024-11-21 11:40:59 +00:00
Merge branch 'master' of https://github.com/DrBeef/QuakeQuest
This commit is contained in:
commit
cbbc7490e8
3 changed files with 4 additions and 6 deletions
|
@ -18,6 +18,7 @@ LOCAL_C_INCLUDES := ../QuakeQuestSrc/ \
|
|||
../darkplaces/ \
|
||||
$(SUPPORT_LIBS)/liboggvorbis/include \
|
||||
$(TOP_DIR)/../../../../../3rdParty/khronos/openxr/OpenXR-SDK/include \
|
||||
$(TOP_DIR)/../../../../../3rdParty/khronos/openxr/OpenXR-SDK/src/common \
|
||||
$(TOP_DIR)/../../../../../OpenXR/Include
|
||||
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ PFNEGLGETSYNCATTRIBKHRPROC eglGetSyncAttribKHR;
|
|||
//Let's go to the maximum!
|
||||
int NUM_MULTI_SAMPLES = 1;
|
||||
int REFRESH = 0;
|
||||
float SS_MULTIPLIER = 1.5f;
|
||||
float SS_MULTIPLIER = 1.3f;
|
||||
|
||||
GLboolean stageSupported = GL_FALSE;
|
||||
|
||||
|
|
|
@ -226,12 +226,9 @@ cvar_t r_bloom_colorexponent = {CVAR_SAVE, "r_bloom_colorexponent", "1", "how ex
|
|||
cvar_t r_bloom_colorsubtract = {CVAR_SAVE, "r_bloom_colorsubtract", "0.125", "reduces bloom colors by a certain amount"};
|
||||
cvar_t r_bloom_scenebrightness = {CVAR_SAVE, "r_bloom_scenebrightness", "1", "global rendering brightness when bloom is enabled"};
|
||||
|
||||
#ifdef META_QUEST
|
||||
cvar_t r_hdr_scenebrightness = {CVAR_SAVE, "r_hdr_scenebrightness", "1", "global rendering brightness"};
|
||||
#endif
|
||||
#ifdef PICO_XR
|
||||
//1.4 on both devices as per Bummsers suggestion (17/01/2023)
|
||||
cvar_t r_hdr_scenebrightness = {CVAR_SAVE, "r_hdr_scenebrightness", "1.4", "global rendering brightness"};
|
||||
#endif
|
||||
|
||||
cvar_t r_hdr_glowintensity = {CVAR_SAVE, "r_hdr_glowintensity", "1", "how bright light emitting textures should appear"};
|
||||
cvar_t r_hdr_irisadaptation = {CVAR_SAVE, "r_hdr_irisadaptation", "0", "adjust scene brightness according to light intensity at player location"};
|
||||
cvar_t r_hdr_irisadaptation_multiplier = {CVAR_SAVE, "r_hdr_irisadaptation_multiplier", "2", "brightness at which value will be 1.0"};
|
||||
|
|
Loading…
Reference in a new issue