summaryrefslogtreecommitdiff
path: root/platform/x11/detect.py
AgeCommit message (Collapse)Author
2016-06-11Merge pull request #4905 from Hinsbart/x11_dpiJuan Linietsky
x11: Implemented dpi detection
2016-06-09-make freetype build for all platforms the same, default as builtin except ↵Juan Linietsky
on x11. closes #5119
2016-06-09x11: Implemented dpi detectionAndreas Haas
depends on XRandR. Had to dynamically load `XRRGetMonitors` as Ubuntu 12.04 doesn't have it. Also removed libudev from travis install list.
2016-06-08GLEW: Define static + enabled and includes via SConsRémi Verschelde
This allows us not to have to hack our definitions in the upstream files, making it easier to upgrade to newer versions in the future. For the include paths to work, the headers are moved to a GL subfolder to match their upstream location.
2016-05-29Finalized DynamicFont implementationJuan Linietsky
-DynamicFont uses Freetype by default -Editor fonts are now scalable thanks to this -Cleaned up documentation browser and added fonts for this
2016-04-02Remove trailing spacesRémi Verschelde
2016-02-14x11: make dependancy on libudev optionalhondres
2016-02-04added option to link libstdc++ staticallyJuan Linietsky
2016-01-26remove dependancy on libevdevhondres
2016-01-10Enable ALSA driver in non-linux X11 when availableeska
2016-01-06Make joydev build using udev and evdev opt-out but blocking (linux)Rémi Verschelde
It is enabled by default, users have to specifically ask for it if they don't want gamepad support. If libudev or libevdev are missing, the build aborts and tells the user the reason and that they can disable gamepad support with the "gamepad=no" option.
2015-12-21Check pkg-config for libudev and enable gamepad code only if found. Linux ↵hondres
only for now
2015-12-21-fixed build system to use pkg-config for evdevJuan Linietsky
2015-12-18Better gamepad supporthondres
2015-12-08changed a bit to use system()Juan Linietsky
2015-12-08improve detection of linux, fixes #3201Juan Linietsky
2015-12-08Merge pull request #2849 from a12n/compobsd2Juan Linietsky
Compile on OpenBSD
2015-11-29Enabled debug symbols for x11 when using platform=release_debug and ↵koalefant
debug_release=yes together
2015-11-250theora compilation fixesJuan Linietsky
2015-11-20Enable ALSA only for LinuxAnton Yabchinskiy
2015-11-19Revert "libao audio driver"Juan Linietsky
2015-11-02Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy
2015-09-26Fixed theora playback. Removed theoraplayer.Juan Linietsky
Still need to get proper audio output latency in some platforms.
2015-09-10fix to builtin freetype defines on linuxJuan Linietsky
2015-09-10fix to freetype detectionJuan Linietsky
2015-08-23fix build issue with ssl, closes #2384Juan Linietsky
2015-08-21damn github built-in editorJuan Linietsky
2015-08-21fix for built-in ssl (easier to build 32 bits export)Juan Linietsky
2015-07-29Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy
2015-06-12some optimizations in godot memory handlingJuan Linietsky
2015-05-22Fix building release target with debug symbolsRémi Verschelde
This forced the -g2 CCFLAG in release builds, making them relatively heavy. Fixes #1781.
2015-04-30-some cleanupsJuan Linietsky
-added tesselation function to curve and curve2d
2015-04-20-Changed Godot exit to be clean.Juan Linietsky
-Added more debug information on memory cleanliness on exit (if run with -v) -Fixed several memory leaks, fixes #1731, fixes #755
2015-04-04Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy
2015-03-23New API: build fixes for x11rollenrolm
2015-02-17Merge branch 'master' of https://github.com/okamstudio/godotAnton Yabchinskiy
2015-02-15Renamed EXPERIMENTAL_WM_API to NEW_WM_APIhurikhan
2015-02-12Merge remote-tracking branch 'upstream/master' into x11-window-managementhurikhan
2015-01-27Adjust x11/detect.pysambler
Test if clang is defined in CC/CXX/LD - this allows a specific version of clang to be defined move appending -DTYPED_METHOD_BIND to keep clang options together move sanitize option out of use_llvm test, gcc48+ also supports sanitize=address
2015-01-17Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy
2015-01-17Merge remote-tracking branch 'upstream/master' into x11-window-managementhurikhan
2015-01-17Merge pull request #1188 from hurikhan/scons_coloredJuan Linietsky
Scons colored
2015-01-14Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy
Conflicts: platform/x11/detect.py
2015-01-14Merge remote-tracking branch 'upstream/master' into x11-window-managementhurikhan
Conflicts: platform/x11/detect.py
2015-01-13Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-01-13fixesJuan Linietsky
2015-01-13Using Xinerama extension for getting screen infohurikhan
2015-01-13introduced the scons experimental_wm_api switch:hurikhan
================================================ Usage: scons p=x11 experimental_wm_api=yes
2015-01-12SCons: colored compilationhurikhan
2015-01-102D Rewrite Step [1]Juan Linietsky
-=-=-=-=-=-=-=-=-=- -Moved drawing code to a single function that takes linked list (should make it easier to optimize in the future). -Implemented Z ordering of 2D nodes. Node2D and those that inherit have a visibility/Z property that affects drawing order (besides the tree order) -Removed OpenGL ES 1.x support. Good riddance!