Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-02-11 21:44:27 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-02-11 21:44:27 +0300
commitad53cb0b9df4543fc26ca1e8c690afffb1615bc9 (patch)
tree810e02d780307b4d5158336eca10d58fb67e5a51 /release
parented4b03215533e601a7a47bc949aae7e49d53e5b7 (diff)
parent40fce61a6abe79508022d3e0cd3a29e187f18e74 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index b6f15ed45a5..fc1911910c4 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -578,14 +578,6 @@ class USERPREF_PT_system_sound(SystemPanel, CenterAlignMixIn, Panel):
class USERPREF_PT_system_cycles_devices(SystemPanel, CenterAlignMixIn, Panel):
bl_label = "Cycles Render Devices"
- @classmethod
- def poll(cls, _context):
- # No GPU rendering on macOS x86_64 currently.
- import platform
- import sys
- return bpy.app.build_options.cycles and \
- (sys.platform != "darwin" or platform.machine() == "arm64")
-
def draw_centered(self, context, layout):
prefs = context.preferences