Skip to content

Commit

Permalink
fix spout bgl reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ARRAKIS\IAAdmin committed Dec 20, 2023
1 parent b54be5e commit f6d2d0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@
"description" : "Sharing Textures via Spout or Syphon from Blender",
"blender" : (3, 0, 0),
"version" : (4, 0, 0),
"doc_url" : "https://github.com/maybites/blender-texture-sharing",
"location" : "Properties > Camera > Camera data",
"category" : "Render",
"wiki_url" : "https://github.com/maybites/blender.script.spout",
"tracker_url" : "https://github.com/maybites/blender.script.spout/issues",
"wiki_url" : "https://github.com/maybites/blender-texture-sharing",
"tracker_url" : "https://github.com/maybites/blender-texture-sharing/issues",
"support" : "COMMUNITY"
}

Expand All @@ -36,7 +37,7 @@ def register():

# then add the required packages
if platform.system() == "Windows":
pip_importer.add_package(pip_importer.Package("SpoutGL", version="==0.0.4", custom_module="spoutgl"))
pip_importer.add_package(pip_importer.Package("SpoutGL", version="==0.0.4", custom_module="SpoutGL"))

if platform.system() == "Darwin":
pip_importer.add_package(pip_importer.Package("syphon-python", version="==0.1.0", custom_module="syphon"))
Expand Down
2 changes: 2 additions & 0 deletions fbs/spout/SpoutServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

import SpoutGL

import bgl

import gpu
from gpu_extras.presets import draw_texture_2d

Expand Down

0 comments on commit f6d2d0b

Please sign in to comment.