For someone getting started with Red/System programming on the Raspberry Pi, what is the best way to access the GPU for 3D rendering? Can this method also be used for Rebol3 on the Raspberry Pi?
Red/System binding for 3D graphics on Raspberry Pi
341 views Asked by Respectech At
2
There are 2 answers
0
Eran W
On
The site in the answer by Kaj de Vos is no longer works.
You may find its mirror useful: https://github.com/red/RS-fossil-mirror
Or the red/code repository: https://github.com/red/code/tree/master/Library/OpenGL
Related Questions in OPENGL-ES
- How can I use ARCore and OpenGL without Sceneform for making ar measurement app android?
- Unable to find GL_INT_2_10_10_10_REV define on Android GLES
- How to rotate model and view matrix with same angle?
- CameraX custom OpenGL Video Pipeline (`UseCase`/`VideoOutput`)
- How do I avoid leaking Graphics memory in OpenGL ES 2.0 in a background thread on Android?
- How to Create GPU SkImage in a Background Thread and Draw it on a Main SkSurface with OpenGL and Skia?
- glTexSubImage2D throws GL_INVALID_OPERATION in OpenGL ES 3.2 on Android NDK with FreeType
- What are the rules for the precision of casting operations in GLSL
- Why would a OpenGL ES 2.0 leak graphics memory on Android, but not iOS with the same code
- Create a VideoFrame from Canvas
- GLES30 Ray Picking gluUnProject
- OpenGL lighting works incorrectly on Android and WebAssembly
- WebGL: this extension has very low support on mobile devices
- OpenGL ES 3.0 - Textures black
- OpenGL-glGetUniformLocation failed
Related Questions in RASPBERRY-PI
- Raspberry Pi Sense Hat with Pyinstaller
- Waiting for several hours before resuming execution
- Using compositor in Gstreamer to merge imagesequence with video/audio stream
- How to make this sensor keep taking readings once its when_in_range function has been activated?
- Emulating an HID device with a raspberry pi 5
- How to stream PCM audio to a speakers both on mac and linux in Node.js?
- I want to use NRF24L01 transceiver with raspberry pi but some GPIO pins are already occupied by 3.5 inch display how do i connect transceiver
- voron 2.4 mainsail kiauh error install crowsnest (solved problem)
- Pi4J minimal example's LED doesn't blink
- How can I connect and send data from react-native to raspberry pi
- Xpt 2046 Display with Pn532 RFID reader
- Google SDK for Raspberry pi
- How to use a RaspberryPi camera with the cv2.videoCapture() function?
- How do I capture audio from the system bus in a node app (or from sox) on a raspberry pi?
- Can't open /dev/mem: Operation not permitted Raspberry Pi
Related Questions in REBOL3
- How to turn off Rebol3 terminal coloring?
- How to convert a binary in surrogate pairs to unicode?
- Rebol - How can I append text from a text field to a text list?
- How to evaluate refinement of a function when calling this function in Red/Rebol
- How to read key from keyboad in red/rebol
- Value of local variables in a function seems not be released post function calling in Red/Rebol language
- How to make anonymous function work in Red/Rebol
- Tracer function written in Rebol
- Rounding TIME! to a number of days in Rebol
- Red or Rebol 3: choice is hard
- Rebol for android showing very small gui
- Inverse of `split` function: `join` a string using a delimeter
- Breaking out of a recursive function
- how to properly parse paired html tags?
- How to use words from a named module inside another?
Related Questions in RED
- In Red (R2) how to call a function whose name passed by argument?
- A particular diff
- How to integrate Red into Rust?
- Rebol - How can I append text from a text field to a text list?
- How to decompress/deflate zlib data [rfc1951]?
- behavior of call in Red language
- How to evaluate refinement of a function when calling this function in Red/Rebol
- How to link other scripts when compiling main program in Red language
- How to construct a function with a default argument
- How to read key from keyboad in red/rebol
- Value of local variables in a function seems not be released post function calling in Red/Rebol language
- Use 'parse' in Red language with number block
- In Red language, how to split a string using split, but also keep the delimiters as nessecary
- How to modify each element of a block by "foreach" in red/rebol
- How does functions of Red/Rebol pass parameters, by value or by reference?
Related Questions in RED-SYSTEM
- How to pass block with context to routine?
- How to append data to block from R/S?
- How to pass value from Red/System to Red?
- Pass Red function pointer to C
- Pass by reference in Red routines
- Accessing runtime functions from Red/System
- invalid target type casting: red-context
- How to cast between integer and character in Red/System?
- How do you use #call directive for Red function with string datatypes as parameters?
- Is it possible to write a Windows DLL in Red?
- How to represent a hex string in Red/System?
- How to create a Red/System binding to a function that takes a pointer to a pointer?
- How do you get a directory listing in Red/System?
- Pointers to an 'array' in Red/System
- Red/System binding for 3D graphics on Raspberry Pi
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
My OpenGL binding for Red/System would be the starting point:
http://red.esperconsultancy.nl/Red-OpenGL
I'm currently working on extending it for the Raspberry Pi. The current binding is for desktop OpenGL. For Raspberry Pi and other small platforms, I'm working on an OpenGL-ES binding. Further, OpenGL needs an environment on the target platform. The binding has several backends, such as SDL, but these don't work on the Raspberry Pi as it uses EGL in combination with its own environment as defined by Broadcom. I'm also working on extra backends for those.
Bindings for Red, including this one when Raspberry Pi support is finished, can be used to base REBOL 3 extensions on, with my Red/REBOL 3 bridge:
http://red.esperconsultancy.nl/Red-REBOL-3
However, writing such an extension is an extra effort.