ready to start unix extraction

This commit is contained in:
Allen Webster 2017-06-30 14:25:33 -04:00
parent 1298496ae7
commit 78383453e9
1 changed files with 0 additions and 6 deletions

View File

@ -99,8 +99,6 @@
#define LINUX_FN_DEBUG(fmt, ...) #define LINUX_FN_DEBUG(fmt, ...)
#endif #endif
#define SUPPORT_DPI 1
#define InterlockedCompareExchange(dest, ex, comp) __sync_val_compare_and_swap((dest), (comp), (ex)) #define InterlockedCompareExchange(dest, ex, comp) __sync_val_compare_and_swap((dest), (comp), (ex))
#include "4ed_file_track.h" #include "4ed_file_track.h"
@ -204,9 +202,7 @@ struct Linux_Vars{
pthread_cond_t conds[8]; pthread_cond_t conds[8];
sem_t thread_semaphore; sem_t thread_semaphore;
#if SUPPORT_DPI
i32 dpi_x, dpi_y; i32 dpi_x, dpi_y;
#endif
Plat_Settings settings; Plat_Settings settings;
System_Functions system; System_Functions system;
@ -2965,7 +2961,6 @@ main(int argc, char **argv){
#undef LOAD_ATOM #undef LOAD_ATOM
#if SUPPORT_DPI
linuxvars.dpi_x = linuxvars.dpi_y = LinuxGetXSettingsDPI(linuxvars.XDisplay, DefaultScreen(linuxvars.XDisplay)); linuxvars.dpi_x = linuxvars.dpi_y = LinuxGetXSettingsDPI(linuxvars.XDisplay, DefaultScreen(linuxvars.XDisplay));
// fallback // fallback
@ -2986,7 +2981,6 @@ main(int argc, char **argv){
else{ else{
fprintf(stderr, "DPI from XSETTINGS: %d\n", linuxvars.dpi_x); fprintf(stderr, "DPI from XSETTINGS: %d\n", linuxvars.dpi_x);
} }
#endif
int window_width, window_height; int window_width, window_height;
if (!LinuxX11WindowInit(argc, argv, &window_width, &window_height)){ if (!LinuxX11WindowInit(argc, argv, &window_width, &window_height)){