diff --git a/kivy/graphics/fbo.pyx b/kivy/graphics/fbo.pyx index 778ebe37ca9..cbed0416dcc 100644 --- a/kivy/graphics/fbo.pyx +++ b/kivy/graphics/fbo.pyx @@ -475,10 +475,6 @@ cdef class Fbo(RenderContext): ''' return self._texture - @property - def buf_id(self): - return self.buffer_id - @property def pixels(self): '''Get the pixels texture, in RGBA format only, unsigned byte. The diff --git a/setup.py b/setup.py index 8c8fe85d96b..cba4d6d590e 100644 --- a/setup.py +++ b/setup.py @@ -886,13 +886,11 @@ def determine_sdl2(): skia_flags = { 'include_dirs': ["/Users/mirko/Documents/projects/skia"], - 'libraries': ['bentleyottmann', 'compression_utils_portable', 'dng_sdk', 'expat', 'harfbuzz', 'icu', 'pathkit', 'skia', 'skottie', 'skparagraph', 'skresources', 'sksg', 'skshaper', 'sktext', 'skunicode', 'svg'], + 'libraries': ['skia', 'skparagraph', 'skshaper', 'skunicode'], 'library_dirs': [os.path.join(KIVY_DEPS_ROOT, 'dist', 'lib', 'skia')], - # 'extra_link_args': ['-Wl,-rpath,' + os.path.join(KIVY_DEPS_ROOT, 'dist', 'lib')], + 'extra_link_args': ['-framework', 'CoreText', '-Wl,-rpath,' + os.path.join(KIVY_DEPS_ROOT, 'dist', 'lib', 'skia')], 'language': 'c++', - # 'depends': ['core/text/text_skia_implem.cpp'], 'extra_compile_args': ['-std=c++17', '-stdlib=libc++'], - 'extra_link_args': ['-framework', 'CoreText'], } sources = {