Blender Git Loki

Git Commits -> Revision a8dee3a

Revision a8dee3a by Jason Wilkins (soc-2014-viewport_fx)
June 12, 2014, 01:26 (GMT)
GHOST Refactor for EGL Contexts

Documentation to appear here:
http://wiki.blender.org/index.php/User:Jwilkins/VFX/GHOST_Refactor_for_EGL

Missing from this commit is support for systems other than Windows.
This also only builds with CMake.

Commit Details:

Full Hash: a8dee3a614692b7e4f4a897cc32f85a19c965dff
Parent Commit: 6da8fa6
Lines Changed: +55639, -782

24 Added Paths:

/build_files/cmake/Modules/FindOpenGLES.cmake (+51, -0) (View)
/extern/glew-es/CMakeLists.txt (+52, -0) (View)
/extern/glew-es/include/GL/eglew.h (+1384, -0) (View)
/extern/glew-es/include/GL/glesew.h (+4318, -0) (View)
/extern/glew-es/include/GL/glew.h (+20525, -0) (View)
/extern/glew-es/include/GL/glxew.h (+1649, -0) (View)
/extern/glew-es/include/GL/wglew.h (+1424, -0) (View)
/extern/glew-es/src/glew.c (+22392, -0) (View)
/intern/ghost/intern/GHOST_Context.cpp (+152, -0) (View)
/intern/ghost/intern/GHOST_Context.h (+112, -0) (View)
/intern/ghost/intern/GHOST_ContextCGL.h (+94, -0) (View)
/intern/ghost/intern/GHOST_ContextCGL.mm (+79, -0) (View)
/intern/ghost/intern/GHOST_ContextEGL.cpp (+599, -0) (View)
/intern/ghost/intern/GHOST_ContextEGL.h (+148, -0) (View)
/intern/ghost/intern/GHOST_ContextNone.cpp (+61, -0) (View)
/intern/ghost/intern/GHOST_ContextNone.h (+72, -0) (View)
/intern/ghost/intern/GHOST_ContextWGL.cpp (+943, -0) (View)
/intern/ghost/intern/GHOST_ContextWGL.h (+169, -0) (View)
/intern/ghost/intern/GHOST_ContextXGL.cpp (+32, -0) (View)
/intern/ghost/intern/GHOST_ContextXGL.h (+37, -0) (View)
/intern/glew-mx/CMakeLists.txt (+39, -0) (View)
/intern/glew-mx/glew-mx.h (+68, -0) (View)
/intern/glew-mx/intern/glew-mx.c (+64, -0) (View)
/source/blender/gpu/GPU_glew.h (+340, -0) (View)

117 Modified Paths:

/build_files/cmake/macros.cmake (+8, -6) (Diff)
/CMakeLists.txt (+213, -7) (Diff)
/extern/CMakeLists.txt (+8, -1) (Diff)
/extern/glew/CMakeLists.txt (+1, -1) (Diff)
/intern/CMakeLists.txt (+1, -0) (Diff)
/intern/cycles/app/CMakeLists.txt (+4, -1) (Diff)
/intern/cycles/blender/CMakeLists.txt (+2, -1) (Diff)
/intern/cycles/cmake/external_libs.cmake (+9, -6) (Diff)
/intern/cycles/device/CMakeLists.txt (+2, -2) (Diff)
/intern/cycles/render/CMakeLists.txt (+3, -1) (Diff)
/intern/cycles/util/CMakeLists.txt (+3, -1) (Diff)
/intern/cycles/util/util_opengl.h (+1, -2) (Diff)
/intern/cycles/util/util_view.cpp (+1, -0) (Diff)
/intern/ghost/CMakeLists.txt (+40, -4) (Diff)
/intern/ghost/intern/GHOST_SystemWin32.cpp (+19, -30) (Diff)
/intern/ghost/intern/GHOST_Window.cpp (+53, -14) (Diff)
/intern/ghost/intern/GHOST_Window.h (+27, -38) (Diff)
/intern/ghost/intern/GHOST_WindowCocoa.h (+7, -10) (Diff)
/intern/ghost/intern/GHOST_WindowCocoa.mm (+78, -13) (Diff)
/intern/ghost/intern/GHOST_WindowSDL.cpp (+2, -1) (Diff)
/intern/ghost/intern/GHOST_WindowWin32.cpp (+119, -484) (Diff)
/intern/ghost/intern/GHOST_WindowWin32.h (+9, -67) (Diff)
/intern/opencolorio/CMakeLists.txt (+3, -1) (Diff)
/intern/opencolorio/ocio_impl.cc (+0, -7) (Diff)
/intern/opencolorio/ocio_impl_glsl.cc (+1, -1) (Diff)
/source/blender/blenfont/CMakeLists.txt (+3, -1) (Diff)
/source/blender/blenkernel/CMakeLists.txt (+2, -1) (Diff)
/source/blender/blenkernel/intern/cdderivedmesh.c (+1, -2) (Diff)
/source/blender/blenkernel/intern/DerivedMesh.c (+1, -2) (Diff)
/source/blender/blenkernel/intern/editderivedmesh.c (+1, -2) (Diff)
/source/blender/blenkernel/intern/pbvh.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/smoke.c (+2, -2) (Diff)
/source/blender/blenkernel/intern/subsurf_ccg.c (+1, -2) (Diff)
/source/blender/editors/animation/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/armature/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/gpencil/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/include/BIF_gl.h (+1, -1) (Diff)
/source/blender/editors/interface/CMakeLists.txt (+3, -0) (Diff)
/source/blender/editors/mask/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/mesh/CMakeLists.txt (+3, -0) (Diff)
/source/blender/editors/object/CMakeLists.txt (+4, -1) (Diff)
/source/blender/editors/physics/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/render/CMakeLists.txt (+3, -0) (Diff)
/source/blender/editors/render/render_opengl.c (+1, -2) (Diff)
/source/blender/editors/screen/CMakeLists.txt (+3, -0) (Diff)
/source/blender/editors/sculpt_paint/CMakeLists.txt (+3, -0) (Diff)
/source/blender/editors/space_action/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_buttons/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_clip/CMakeLists.txt (+4, -1) (Diff)
/source/blender/editors/space_console/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_file/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_graph/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_image/CMakeLists.txt (+5, -2) (Diff)
/source/blender/editors/space_info/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_logic/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_nla/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_node/CMakeLists.txt (+3, -0) (Diff)
/source/blender/editors/space_outliner/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_script/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_sequencer/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_text/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_time/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_view3d/CMakeLists.txt (+2, -1) (Diff)
/source/blender/editors/transform/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/util/CMakeLists.txt (+3, -1) (Diff)
/source/blender/editors/uvedit/CMakeLists.txt (+4, -0) (Diff)
/source/blender/gpu/CMakeLists.txt (+3, -1) (Diff)
/source/blender/gpu/intern/gpu_buffers.c (+1, -2) (Diff)
/source/blender/gpu/intern/gpu_codegen.c (+2, -3) (Diff)
/source/blender/gpu/intern/gpu_codegen.h (+1, -1) (Diff)
/source/blender/gpu/intern/gpu_draw.c (+1, -2) (Diff)
/source/blender/gpu/intern/gpu_extensions.c (+1, -2) (Diff)
/source/blender/gpu/intern/gpu_material.c (+1, -2) (Diff)
/source/blender/gpu/intern/gpu_simple_shader.c (+1, -1) (Diff)
/source/blender/makesrna/intern/CMakeLists.txt (+3, -0) (Diff)
/source/blender/modifiers/CMakeLists.txt (+0, -1) (Diff)
/source/blender/nodes/CMakeLists.txt (+3, -0) (Diff)
/source/blender/python/generic/bgl.c (+1, -1) (Diff)
/source/blender/python/generic/CMakeLists.txt (+3, -1) (Diff)
/source/blender/python/intern/CMakeLists.txt (+1, -0) (Diff)
/source/blender/windowmanager/CMakeLists.txt (+2, -2) (Diff)
/source/blender/windowmanager/intern/wm_draw.c (+1, -1) (Diff)
/source/blenderplayer/CMakeLists.txt (+1, -1) (Diff)
/source/creator/CMakeLists.txt (+17, -1) (Diff)
/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp (+1, -1) (Diff)
/source/gameengine/BlenderRoutines/CMakeLists.txt (+2, -1) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderCanvas.cpp (+1, -1) (Diff)
/source/gameengine/GamePlayer/common/CMakeLists.txt (+2, -1) (Diff)
/source/gameengine/GamePlayer/common/GPC_Canvas.h (+1, -1) (Diff)
/source/gameengine/GamePlayer/ghost/CMakeLists.txt (+2, -1) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_Application.cpp (+1, -1) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp (+7, -8) (Diff)
/source/gameengine/Ketsji/BL_Shader.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/BL_Texture.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/CMakeLists.txt (+2, -1) (Diff)
/source/gameengine/Ketsji/KX_BlenderMaterial.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_Camera.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_Dome.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_Dome.h (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_PythonInit.cpp (+1, -1) (Diff)
/source/gameengine/Physics/Bullet/CMakeLists.txt (+3, -0) (Diff)
/source/gameengine/Rasterizer/CMakeLists.txt (+2, -1) (Diff)
/source/gameengine/Rasterizer/RAS_2DFilterManager.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/CMakeLists.txt (+2, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_GLExtensionManager.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_ListRasterizer.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLLight.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_StorageIM.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_StorageVA.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_StorageVBO.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_StorageVBO.h (+1, -1) (Diff)
/source/gameengine/VideoTexture/CMakeLists.txt (+2, -1) (Diff)
/source/gameengine/VideoTexture/ImageBase.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/ImageRender.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/ImageViewport.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/Texture.cpp (+1, -1) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021