Go to advanced search

by beddu
Mon Jul 24, 2017 1:44 pm
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

ShiftPlusOne wrote:I wonder if this is the relevant issue:
https://github.com/raspberrypi/linux/is ... -265559604
It could be, if this is the case, the first thing would be to try to change SD card, I believe.
by beddu
Mon Jul 24, 2017 1:28 pm
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

You misunderstand. Update isn't the solution to all problems, it's the solution to some problems. However, it does give a good, known base from which you can then attempt to find/fix the issue. And who knows, sometimes updating does fix a problem! Although not, I suspect, in this case. I am just jo...
by beddu
Mon Jul 24, 2017 1:21 pm
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

ShiftPlusOne wrote:An update is the solution is very few specific cases and this isn't one of them.
I think so... Thank you.
by beddu
Mon Jul 24, 2017 12:49 pm
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

Ok guys, thank you all! Now i know that the solution to every problem is "update" and if it does not work, just wait for the next "update" :-D

SOLVED ahahahah
by beddu
Mon Jul 24, 2017 10:20 am
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

For most software, if you aren't using the latest version and you raise issues, then the first thing you will be advised to do will be to get the latest version. PeterO It was the latest version when i posted this issue. It does not look like a "known issue" so if it works for others, i would like ...
by beddu
Mon Jul 24, 2017 9:26 am
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

fruitoftheloom wrote:Pixel Desktop no longer exists:
But i am using it :-D
I am not going to change OS on all my devices right now just because they changed marketing strategy :-P let's wait a little bit of time to understand what is going to happen next, mainwhile if i can solve the problem easily, why not...?
by beddu
Mon Jul 24, 2017 9:06 am
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

Imperf3kt wrote:I had this same issue when I first got my Pi.
I quickly figured out my problem was the dodgy power supply I was using wasn't stable.
Perhaps you have a similar issue?
Maybe... I am using a 2A power supply, but if you ask me "is your power supply stable?" i dont't know what to answer...
by beddu
Sun Jul 23, 2017 10:01 am
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

So how it went? Hi! Sorry for the late reply. I think its better, sometimes still happens that i have to wait several seconds just to see the result of a click to close a window or to refresh a folder view, but i feel its not happening as often as before. I cannot be sure 100% that it's not simply ...
by beddu
Sat May 27, 2017 4:34 pm
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

gkreidl wrote:Probably starting to swap. Check the memory usage.
Memory usage is about 55%... shouldn't be....right?
by beddu
Sat May 27, 2017 4:33 pm
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

Re: PIXEL hangs and lags...?

gtk-enable-animations = 0 gtk-enable-event-sounds = 0 gtk-enable-input-feedback-sounds = 0 gtk-enable-tooltips = 0 gtk-error-bell = 0 gtk-menu-popdown-delay = 0 gtk-menu-popup-delay = 0 gtk-recent-files-limit = 0 gtk-recent-files-max-age = 0 I tried... let's test it for several days, I will let you...
by beddu
Sat May 27, 2017 2:56 pm
Forum: Troubleshooting
Topic: PIXEL hangs and lags...?
Replies: 22
Views: 2609

PIXEL hangs and lags...?

Hello everybody! I am new to raspi's world, now its about one month that I am working with a RPI 3B on Jessie + Pixel. I am developing software for Jessie directly on Jessie using Code::Blocks IDE. Time to time, whatever I am doing, with any application (also File Manager!) happens that everything o...
by beddu
Wed May 24, 2017 6:05 pm
Forum: OpenGLES
Topic: Can't render to render buffer
Replies: 1
Views: 2699

Re: Can't render to render buffer

Hi! I managed to do rendering to texture in a slightly different way. First of all generate a texture with the same format and dimensions as my viewport and no filtering: glGenTextures(1, (GLuint*)&frameBufferTexture); glBindTexture(GL_TEXTURE_2D, (GLuint)frameBufferTexture); glTexImage2D(GL_TEXTURE...
by beddu
Tue May 23, 2017 12:51 pm
Forum: OpenGLES
Topic: Rendering works only on development platform
Replies: 7
Views: 2489

Re: Rendering works only on development platform

Have you got the GPU mem set too low on the "runtime" SD? Does your program check for any OpenGLES (and EGL) errors? If the textured polygon isn't showing but otherwise the program appears to work it could be that there wasn't enough GPU memory for the texture. You got it!! Finally!! :lol: my gpu m...
by beddu
Tue May 23, 2017 12:17 pm
Forum: OpenGLES
Topic: Rendering works only on development platform
Replies: 7
Views: 2489

Re: Rendering works only on development platform

Unfortunately I have already something similar, in case the file was not loaded correctly I print out an error message, so I am quite sure that there are no problems from that point of view. I tried to intentionally start the program from a different path and the error messages are displayed correct...
by beddu
Tue May 23, 2017 11:52 am
Forum: OpenGLES
Topic: Rendering works only on development platform
Replies: 7
Views: 2489

Re: Rendering works only on development platform

Are you in the same directory on both Pi's? Does your code reference a relative or static path for the image? The full path is not the same, but i have a folder with two folders inside: "bin" and "res". The executable is inside bin, texture inside res, and I load the texture by choosing "../res" as...
by beddu
Tue May 23, 2017 11:43 am
Forum: OpenGLES
Topic: Rendering works only on development platform
Replies: 7
Views: 2489

Rendering works only on development platform

Hello everybody! I have a Raspberry PI 3B and a Raspberry PI Zero W, each one has its own SD card, on both SD cards I have the same Raspbian Jessie image (with Pixel). On raspi 3B I installed Code::Blocks ide and developed a simple OGLES program. Let's call the SD card with code::blocks "development...
by beddu
Fri May 19, 2017 12:30 pm
Forum: Troubleshooting
Topic: Playing with boot can hurt...
Replies: 4
Views: 664

Re: Playing with boot can hurt...

Boot the "rescue" sd card, plug the "damaged" card into the external card reader and plug it in to an available USB port. You can then mount the partition and edit the files or recover "clean" copies from the "rescue" sd card. That's right! I installed "Paragon ExtFS for Windows" on my Windows lapt...
by beddu
Fri May 19, 2017 10:35 am
Forum: Troubleshooting
Topic: Playing with boot can hurt...
Replies: 4
Views: 664

Playing with boot can hurt...

Hello everybody! I am new to linux and RPI, and after several months of experiments, finally I fell in trouble! I followed these instructions to start an application on boot, modifying the /etc/rc.local file: https://www.raspberrypi.org/documentation/linux/usage/rc-local.md ...but... I forgot to add...
by beddu
Thu May 18, 2017 10:10 pm
Forum: General discussion
Topic: Raspberry PI Zero W OpenGL support [old]
Replies: 8
Views: 3935

Re: Raspberry PI Zero W OpenGL support

6by9 wrote:Pi0 and Pi1 have OpenGLES support through the firmware. They don't have full OpenGL support.
That's perfect!! Thank you!
by beddu
Thu May 18, 2017 10:09 pm
Forum: General discussion
Topic: Raspberry PI Zero W OpenGL support [old]
Replies: 8
Views: 3935

Re: Raspberry PI Zero W OpenGL support

in this release we are shipping an experimental OpenGL driver for the desktop which uses the GPU to provide hardware acceleration. This is turned off by default – if you want to enable it, you can find it in the command-line version of raspi-config, under Advanced Options->GL Driver. Due to memory ...
by beddu
Thu May 18, 2017 8:46 am
Forum: General discussion
Topic: Raspberry PI Zero W OpenGL support [old]
Replies: 8
Views: 3935

Raspberry PI Zero W OpenGL support [old]

Hello everybody! I am thinking to buy a Rapberry PI Zero W to build a 7" wireless LCD. The software connects through a wireless network to a remote server, receives some data, and shows it up as a nice OpenGL rendered screen with several very simple animations. I did not find (until now) any explici...

Go to advanced search