2011-04-27 11:58:34 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2011-04-27 11:58:34 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +00:00
|
|
|
#
|
2013-08-18 14:16:15 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
2014-12-25 02:50:24 +01:00
|
|
|
# limitations under the License.
|
2011-04-27 11:58:34 +00:00
|
|
|
#
|
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
# <pep8 compliant>
|
|
|
|
|
2013-01-15 23:17:45 +00:00
|
|
|
|
2015-07-20 11:08:50 +02:00
|
|
|
def _is_using_buggy_driver():
|
|
|
|
import bgl
|
|
|
|
# We need to be conservative here because in multi-GPU systems display card
|
|
|
|
# might be quite old, but others one might be just good.
|
|
|
|
#
|
|
|
|
# So We shouldn't disable possible good dedicated cards just because display
|
|
|
|
# card seems weak. And instead we only blacklist configurations which are
|
|
|
|
# proven to cause problems.
|
|
|
|
if bgl.glGetString(bgl.GL_VENDOR) == "ATI Technologies Inc.":
|
|
|
|
import re
|
|
|
|
version = bgl.glGetString(bgl.GL_VERSION)
|
|
|
|
if version.endswith("Compatibility Profile Context"):
|
|
|
|
# Old HD 4xxx and 5xxx series drivers did not have driver version
|
2015-09-14 02:21:15 +10:00
|
|
|
# in the version string, but those cards do not quite work and
|
|
|
|
# causing crashes.
|
2015-07-20 11:08:50 +02:00
|
|
|
return True
|
|
|
|
regex = re.compile(".*Compatibility Profile Context ([0-9]+(\.[0-9]+)+)$")
|
|
|
|
if not regex.match(version):
|
|
|
|
# Skip cards like FireGL
|
|
|
|
return False
|
|
|
|
version = regex.sub("\\1", version).split('.')
|
|
|
|
return int(version[0]) == 8
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def _workaround_buggy_drivers():
|
|
|
|
if _is_using_buggy_driver():
|
2015-07-23 12:08:19 +02:00
|
|
|
import _cycles
|
|
|
|
if hasattr(_cycles, "opencl_disable"):
|
|
|
|
print("Cycles: OpenGL driver known to be buggy, disabling OpenCL platform.")
|
|
|
|
_cycles.opencl_disable()
|
2015-07-20 11:08:50 +02:00
|
|
|
|
2015-09-01 03:51:50 +10:00
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
def init():
|
2012-12-13 08:45:55 +00:00
|
|
|
import bpy
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
2011-08-28 13:55:59 +00:00
|
|
|
import os.path
|
2011-09-09 12:04:39 +00:00
|
|
|
|
2015-09-14 02:21:15 +10:00
|
|
|
# Workaround possibly buggy legacy drivers which crashes on the OpenCL
|
2015-07-20 11:08:50 +02:00
|
|
|
# device enumeration.
|
|
|
|
#
|
|
|
|
# This checks are not really correct because they might still fail
|
|
|
|
# in the case of multiple GPUs. However, currently buggy drivers
|
|
|
|
# are really old and likely to be used in single GPU systems only
|
|
|
|
# anyway.
|
|
|
|
#
|
|
|
|
# Can't do it in the background mode, so we hope OpenCL is no enabled
|
|
|
|
# in the user preferences.
|
|
|
|
if not bpy.app.background:
|
|
|
|
_workaround_buggy_drivers()
|
|
|
|
|
2011-09-09 12:04:39 +00:00
|
|
|
path = os.path.dirname(__file__)
|
|
|
|
user_path = os.path.dirname(os.path.abspath(bpy.utils.user_resource('CONFIG', '')))
|
|
|
|
|
2015-02-18 21:16:52 +05:00
|
|
|
_cycles.init(path, user_path, bpy.app.background)
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
|
2016-02-07 03:40:41 +05:00
|
|
|
def exit():
|
|
|
|
import _cycles
|
|
|
|
_cycles.exit()
|
|
|
|
|
2015-02-18 21:16:52 +05:00
|
|
|
def create(engine, data, scene, region=None, v3d=None, rv3d=None, preview_osl=False):
|
2012-12-13 08:45:55 +00:00
|
|
|
import bpy
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-08-28 13:55:59 +00:00
|
|
|
data = data.as_pointer()
|
2012-01-09 16:58:01 +00:00
|
|
|
userpref = bpy.context.user_preferences.as_pointer()
|
2011-08-28 13:55:59 +00:00
|
|
|
scene = scene.as_pointer()
|
|
|
|
if region:
|
|
|
|
region = region.as_pointer()
|
|
|
|
if v3d:
|
|
|
|
v3d = v3d.as_pointer()
|
|
|
|
if rv3d:
|
|
|
|
rv3d = rv3d.as_pointer()
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2016-01-12 16:00:48 +05:00
|
|
|
if bpy.app.debug_value == 256:
|
|
|
|
_cycles.debug_flags_update(scene)
|
|
|
|
else:
|
|
|
|
_cycles.debug_flags_reset()
|
|
|
|
|
2015-02-18 21:16:52 +05:00
|
|
|
engine.session = _cycles.create(engine.as_pointer(), userpref, data, scene, region, v3d, rv3d, preview_osl)
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
def free(engine):
|
2011-11-15 02:58:01 +00:00
|
|
|
if hasattr(engine, "session"):
|
2011-08-28 13:55:59 +00:00
|
|
|
if engine.session:
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
|
|
|
_cycles.free(engine.session)
|
2011-08-28 13:55:59 +00:00
|
|
|
del engine.session
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
|
2011-05-17 14:26:45 +00:00
|
|
|
def render(engine):
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
2011-11-27 03:49:09 +00:00
|
|
|
if hasattr(engine, "session"):
|
2011-12-24 02:47:13 +00:00
|
|
|
_cycles.render(engine.session)
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
|
2016-01-15 13:00:56 -02:00
|
|
|
def bake(engine, obj, pass_type, pass_filter, object_id, pixel_array, num_pixels, depth, result):
|
2014-01-02 19:05:07 -02:00
|
|
|
import _cycles
|
|
|
|
session = getattr(engine, "session", None)
|
|
|
|
if session is not None:
|
2016-01-15 13:00:56 -02:00
|
|
|
_cycles.bake(engine.session, obj.as_pointer(), pass_type, pass_filter, object_id, pixel_array.as_pointer(), num_pixels, depth, result.as_pointer())
|
2014-01-02 19:05:07 -02:00
|
|
|
|
2014-07-22 12:03:15 +10:00
|
|
|
|
2012-11-09 08:46:53 +00:00
|
|
|
def reset(engine, data, scene):
|
|
|
|
import _cycles
|
|
|
|
data = data.as_pointer()
|
|
|
|
scene = scene.as_pointer()
|
|
|
|
_cycles.reset(engine.session, data, scene)
|
|
|
|
|
|
|
|
|
2011-05-17 14:26:45 +00:00
|
|
|
def update(engine, data, scene):
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
|
|
|
_cycles.sync(engine.session)
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
|
2011-05-17 14:26:45 +00:00
|
|
|
def draw(engine, region, v3d, rv3d):
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
2011-08-28 13:55:59 +00:00
|
|
|
v3d = v3d.as_pointer()
|
|
|
|
rv3d = rv3d.as_pointer()
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-08-28 13:55:59 +00:00
|
|
|
# draw render image
|
2011-12-24 02:47:13 +00:00
|
|
|
_cycles.draw(engine.session, v3d, rv3d)
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
def available_devices():
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
|
|
|
return _cycles.available_devices()
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2011-11-15 02:58:01 +00:00
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
def with_osl():
|
2011-12-24 02:47:13 +00:00
|
|
|
import _cycles
|
|
|
|
return _cycles.with_osl
|
2014-02-13 08:51:33 +11:00
|
|
|
|
|
|
|
|
2013-12-07 02:29:53 +01:00
|
|
|
def with_network():
|
|
|
|
import _cycles
|
|
|
|
return _cycles.with_network
|
2015-01-06 14:13:21 +05:00
|
|
|
|
2015-01-29 15:35:06 +11:00
|
|
|
|
2015-01-06 14:13:21 +05:00
|
|
|
def system_info():
|
|
|
|
import _cycles
|
|
|
|
return _cycles.system_info()
|