0

I have to create a program in OpenCL using Visual Studio 2010 and I need to make a GUI that has some buttons to change parameters of the program. Is there any tool/language to create a MVC GUI that links to the OpenCL program?

I did GUIs in Java, but in this case I have no idea how to link the program with a GUI.

Alba S.
  • 21
  • 5

1 Answers1

2

Im assuming that you are using opencl c in visual studio. You must realize here that opencl is just an api for the c language. Hence if you need to create a GUI for your opencl code all you need to do is make a GUI in C using visual studio. I guess what you need to be searching for is an MVC based GUI in C. The GUI can be made entirely in C and the opencl implementation can be in you controller part of your MVC design.

These links might just help you get started.

Is there any crossplatform GUI library for C language?

http://www.egr.msu.edu/classes/ece480/capstone/spring15/group11/doc/AppNote/ECE480_AppNotes_JoshuaFolks.pdf

How do I create a GUI for a windows application using C++?

Community
  • 1
  • 1
Prashant Ravi
  • 189
  • 12
  • Thank you for the links, they're very useful. It might have seen like a silly question but I was very lost at the beginning of the implementation during the analysis and maybe a little missguided. Thanks a lot! – Alba S. Aug 19 '16 at 11:57
  • You are welcome, would be great if you could upvote my answer – Prashant Ravi Aug 21 '16 at 08:47