Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

output_frame_buffer missing support in macosx aarch64 #2316

Open
ben-kaye opened this issue Apr 4, 2024 · 0 comments
Open

output_frame_buffer missing support in macosx aarch64 #2316

ben-kaye opened this issue Apr 4, 2024 · 0 comments
Labels
state: pending not addressed yet type: bug bug

Comments

@ben-kaye
Copy link

ben-kaye commented Apr 4, 2024

Version of Dear PyGui

Version: 1.11.1
Operating System: macosx 14.4

My Issue/Question

Exception: Error: [1000] Message: output_frame_buffer(...) has not been implemented for this platform yet.

To Reproduce

Clone https://github.com/harshkaso/Flux
python3 flux.py

Expected behavior

The example to work.

Standalone, minimal, complete and verifiable example

import dearpygui

import dearpygui.dearpygui as dpg

dpg.create_context()

with dpg.window(label="Tutorial"):

    with dpg.drawlist(width=300, height=300):  # or you could use dpg.add_drawlist and set parents manually

        dpg.draw_line((10, 10), (100, 100), color=(255, 0, 0, 255), thickness=1)

    dpg.set_frame_callback(dpg.get_frame_count()+1, callback=lambda: dpg.output_frame_buffer(callback=clear_frame))

def clear_frame(*args):
    pass

dpg.create_viewport(title='Custom Title', width=800, height=600)
dpg.setup_dearpygui()
dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()()
@ben-kaye ben-kaye added state: pending not addressed yet type: bug bug labels Apr 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
state: pending not addressed yet type: bug bug
Projects
None yet
Development

No branches or pull requests

1 participant