Salome HOME
[EDF22374] : osmesa usage on poor graphcal capabilities laptops
[modules/kernel.git] / bin / appliskel / salome_mesa
index ad58c92830512f229c8fccff627415130639f95d..1c05f0867b3d9109f93010521eb7aa0be8952803 100644 (file)
 # discussion of the issue, EDF Redmine issue #22374.
 #
 
-import os
-import subprocess
+import salome_common
 import sys
 
-MODULES = []
-
-
-def main(args):
-    ''' Load modules then launch salome
-    '''
-    if MODULES:
-        env_modules = MODULES[:]
-        env_modules_option = "--with-env-modules="
-        env_modules_l = [x for x in args if x.startswith(env_modules_option)]
-        if env_modules_l:
-            env_modules += env_modules_l[-1][len(env_modules_option):].split(',')
-            args = [x for x in args if not x.startswith(env_modules_option)]
-        env_modules_option += "%s" % ','.join(env_modules)
-        args.append(env_modules_option)
-
-    # Activate MESA rendering (see ...)
+if __name__ == "__main__":
+    import os
     os.environ["XLIB_SKIP_ARGB_VISUALS"]="1"
     os.environ["MESA_GL_VERSION_OVERRIDE"]="4.5"
-
-    appliPath = os.path.dirname(os.path.realpath(__file__))
-    os.environ["ROOT_SALOME_INSTALL"]=appliPath
-    proc = subprocess.Popen([os.path.join(appliPath, '.salome_run')] + args, close_fds=True)
-    out, err = proc.communicate()
-    sys.exit(proc.returncode)
-
-if __name__ == "__main__":
-    main(sys.argv[1:])
+    salome_common.main(sys.argv[1:])