User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Thu Oct 08, 2020 12:43 am

Hello forums!
For a long while I've been considering building an app store for the RPi, and now I am pleased to say: it's finally a reality.
Introducing Pi-Apps, the only app store dedicated to community-developed RPi projects that aren't available in the repository.
Image
Currently we have Arduino, BalenaEtcher, Chromium Media Edition, CommanderPi, Conky, Cool Retro Term, Cura, Discord, Email Checker, FreeCAD, Minecraft Java, piKiss, Pi Power Tools, Raspi2png, Retropie, TBOPlayer, Windows 10 Theme, and Zoom.
(and more apps are being added every day)

Speaking of Zoom, this has been a recent development that I played a minor part in. Turns out you can emulate the i386 Linux Zoom application, using box86, with enough performance to be usable on a Pi4.
You don't believe me? Go watch Novaspirit Tech's video about it.
I personally have tried this Zoom solution during testing, and agree with Novaspirit's conclusion: it's not blazing fast, but much better than doing it in-browser. And the Gallery View is a nice bonus.
2020-10-07-194639_1920x1080_scrot.png
2020-10-07-194639_1920x1080_scrot.png (222.12 KiB) Viewed 18147 times
Anyway, here's how to download Pi-Apps:

Code: Select all

git clone https://github.com/Botspot/pi-apps
To install Pi-Apps:

Code: Select all

/home/pi/pi-apps/install
The installs script creates a couple menu buttons, and makes sure the yad dialog program is installed.

To install Zoom, launch Pi-Apps from Menu -> Accessories, then find Zoom in the list:
2020-10-07-185326_1920x1080_scrot.png
2020-10-07-185326_1920x1080_scrot.png (62.94 KiB) Viewed 18161 times
Click Install, and wait a couple minutes for the terminal to finish up. Couldn't be easier.

If you want to see more details about an app, click Details.
2020-10-07-185452_1920x1080_scrot.png
2020-10-07-185452_1920x1080_scrot.png (76.94 KiB) Viewed 18161 times
If you want to change some settings, launch Menu -> Preferences -> Pi-Apps Settings.
That's about it!

How does it work?
Well, first I'd like to apologize for the almost total lack of documentation at this time. Now that the coding is mostly done, I expect to focus on docs from now going forward.
Here's a brief idea of what Pi-Apps does. Soon the README will contain all the below information, and a lot more info too.
  • Pi-Apps is 100% bash scripts. :ugeek:
  • Pi-Apps is intended to serve as a middle man: being a convenient & standardized way to install various RPi projects.
  • Pi-Apps is designed with the KISS principle: lightweight and super simple to use.
  • Each App rests in its own separate folder.
  • On average, each app folder contains about 5 kilobytes worth of files, and most of that comes from the two icons.
  • Each app folder contains these files: an install script, uninstall script, 2 sizes of icons, description file, and a website URL.
  • Most of the install scripts will clone a github repository, maybe run an installer, and create a menu button. Some, like Zoom, will be more elaborate, like downloading several files from different places, and compiling a dependency.
  • Because of the contained nature of each app folder, it's really easy to 'package' your own 3rd-party apps: just put the folder in a ZIP file.
  • Clicking the menu button launches /home/pi/pi-apps/gui.
  • When you click Install, the selected App's install script is executed.
  • When you click Uninstall, the selected App's uninstall script is executed.
  • When you click Details, the gui script pulls all the information available for an app, and displays it in a text box.
  • Launching Pi-Apps Settings will allow you to change some Pi-Apps options:
    • How often to check for updates.
    • Which text editor to use when creating your own app's install script.
    • Whether or not an app should be automatically reinstalled, after it's been updated.
    • Whether or not to display an Edit button when viewing an App's details.
    • Whether or not to shuffle the App List. (to prevent apps starting with A from being privileged over apps starting with Z)
    • Whether or not you want manual control over APT operations.
  • In Settings, there's a cool button to create your own app. It assists you in creating install, uninstall, icon-24.png, icon-64.png, description, and website.
  • All files/folders inside the pi-apps folder are subject to update checks, except the .git folder, data folder, and update folder.
  • The data directory contains everything you don't want overwritten: all settings, all install status information for all apps, update info, and keeps track of which packages each app has installed.
Please remember:
Pi-Apps is just barely over two weeks old. It is new, and may contain a few remaining bugs. (just today I removed 3 minor bugs)
Feel free to post bug reports below, or open an issue on the github repository.
Have fun!
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

Puffergas
Posts: 255
Joined: Thu Dec 19, 2019 12:16 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 12:21 am

Interesting. Looks like you have done a lot of work.

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 7:42 am

Pi Apps works fine.
Zoom after installing all (including box86 last version (overwriting my original box86 version)) does not work.
Error message:
Error initializing native libxcb-xtest.so.0 (last dlerror is libxcb-xtest.so.0:cannot open shared object file: No such file or directory)
Error: loading needed libs in elf /home/pi/zoom/zoom

I am new to rpi4 and raspbian. I hope I didn't make a mistake installing the zoom app from Pi Apps in Raspbian OS. I apologize in advance. Someone who has installed the zoom app in RPI4b and has it working, could you please help me to solve the problem? thank you very much !

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 1:26 pm

Xolarwind wrote:
Fri Oct 09, 2020 7:42 am
Pi Apps works fine.
Zoom after installing all (including box86 last version (overwriting my original box86 version)) does not work.
Error message:
Error initializing native libxcb-xtest.so.0 (last dlerror is libxcb-xtest.so.0:cannot open shared object file: No such file or directory)
Error: loading needed libs in elf /home/pi/zoom/zoom

I am new to rpi4 and raspbian. I hope I didn't make a mistake installing the zoom app from Pi Apps in Raspbian OS. I apologize in advance. Someone who has installed the zoom app in RPI4b and has it working, could you please help me to solve the problem? thank you very much !
No problem. I made Pi-Apps, and would be glad to help you.

Please try running this command:

Code: Select all

sudo apt-get install libxcb-xtest*
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

graf_eberstein
Posts: 26
Joined: Sun Oct 28, 2018 8:59 pm

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 2:02 pm

This is great news! I have a few questions:
1) Will this app store also provision correctly on Ubuntu + MATE, or is it exclusive to RpiOS?
2) If it will provision Ubuntu + MATE, will the described Zoom/i386 emulator arrangement work there?
3) If it will not provision Ubuntu + MATE, would I be able to replace the stock RpiOS desktop with MATE and do it that way?

The linchpin here is the MATE desktop, as my partner is not able to use the RpiOS desktop due to a disability. She does require a stable instance of Zoom in order to do remote teaching, and the web-based Zoom-in-Chromium is decidedly not that by any stretch. Consequently, right now she's got multiple devices crowding her desk just to get by, and that's untenable.

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 5:32 pm

Botspot wrote:
Fri Oct 09, 2020 1:26 pm
Xolarwind wrote:
Fri Oct 09, 2020 7:42 am
Pi Apps works fine.
Zoom after installing all (including box86 last version (overwriting my original box86 version)) does not work.
Error message:
Error initializing native libxcb-xtest.so.0 (last dlerror is libxcb-xtest.so.0:cannot open shared object file: No such file or directory)
Error: loading needed libs in elf /home/pi/zoom/zoom

I am new to rpi4 and raspbian. I hope I didn't make a mistake installing the zoom app from Pi Apps in Raspbian OS. I apologize in advance. Someone who has installed the zoom app in RPI4b and has it working, could you please help me to solve the problem? thank you very much !
No problem. I made Pi-Apps, and would be glad to help you.

Please try running this command:

Code: Select all

sudo apt-get install libxcb-xtest*
Thank you!.. i will try and send you feedback. Raspi Apps are really great!!!

brainsys
Posts: 207
Joined: Fri Jun 29, 2012 7:16 pm

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 6:54 pm

Kudos. I have it and Zoom installed. I have yet to test it IRL. I did find I needed to do the following extra things to get it working:

yad
cmake
pulseaudio-utils
pulseaudio

And reboot! Sound is an issue. After restarting pulseaudio I could get sound through the speakers on one setting but it sounded rough. Rome wan't built in a day - and what you have done is very promising. Please stick at it and an empire is at hand.

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 7:35 pm

brainsys wrote:
Fri Oct 09, 2020 6:54 pm
Sound is an issue. After restarting pulseaudio I could get sound through the speakers on one setting but it sounded rough. Rome wan't built in a day - and what you have done is very promising. Please stick at it and an empire is at hand.
I would not recommend using pulseaudio. Try to keep it pure ALSA and it should work better. Manually select an output device by right-clicking on the taskbar's sound icon -> Audio Outputs -> Analog.
brainsys wrote:
Fri Oct 09, 2020 6:54 pm
I did find I needed to do the following extra things to get it working: yad
The Pi-Apps installer script should have installed yad. Did you run the installer script?
brainsys wrote:
Fri Oct 09, 2020 6:54 pm
cmake
Oh, I see what happened. The Zoom install script tried to run cmake before installing it. :roll: OK I've fixed it just now.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 7:50 pm

graf_eberstein wrote:
Fri Oct 09, 2020 2:02 pm
This is great news! I have a few questions:
1) Will this app store also provision correctly on Ubuntu + MATE, or is it exclusive to RpiOS?
2) If it will provision Ubuntu + MATE, will the described Zoom/i386 emulator arrangement work there?
Pi-Apps has been designed and tested on Raspberry Pi OS. Absolutely zero testing has occurred on Ubuntu thus far.

I don't have the slightest idea if Zoom would work on there, but I see no reason why not. (As long as it's 32-bit Ubuntu)
graf_eberstein wrote:
Fri Oct 09, 2020 2:02 pm
3) If it will not provision Ubuntu + MATE, would I be able to replace the stock RpiOS desktop with MATE and do it that way?
That should work fine too.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

brainsys
Posts: 207
Joined: Fri Jun 29, 2012 7:16 pm

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 8:00 pm

Botspot wrote:
Fri Oct 09, 2020 7:35 pm
brainsys wrote:
Fri Oct 09, 2020 6:54 pm
Sound is an issue. After restarting pulseaudio I could get sound through the speakers on one setting but it sounded rough. Rome wan't built in a day - and what you have done is very promising. Please stick at it and an empire is at hand.
I would not recommend using pulseaudio. Try to keep it pure ALSA and it should work better. Manually select an output device by right-clicking on the taskbar's sound icon -> Audio Outputs -> Analog.
The first run through showed it could not find pactl. So installed pulseaudio-utils. It then said the pulseaudio daemon wasn't running so I installed pulseaudio. I'll try uninstalling pulseaudio and do as you suggest. But too much pizza'n'plonk to do it safely this evening :)

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 8:03 pm

In my case, zoom desktop app finally works after installing and copying libxcb-xtest on zoom folder. Sound works fine after fighting a little bit with zoom setup...(i have to select every time manually usb sound card on zoom configuration, because zoom selects automatically hdmi output every time and modify my previous selection (as computer or system sound). We are using the integrated usb sound card of a logitech usb headset to have zoom audio (we use zoom with headsets to avoid ambient noise by using noise cancellation properties of headset mic) . I also have a nice hdmi full hd computer monitor without integrated speakers. The problem now is: NO zoom video from my camera. I have problems with my video using original rpi camera module v2 conected to ISP port. Zoom gave me the only option to select bcm2835 video ISP (broadcom chip via ISP) but video does not ever work. No other options on zoom desktop app (box86) . The rare thing is the camera works fine (with the classic reported periodic lags) on zoom web (Chromium) using raspbian (not box86 emulator). Can somebody figure out what could be the problem? ... it could be a problem with the box86 emulator ? So the original RPi camera (via ARM processor GPU) is not recognized?. Thank you very much in advance if somebody using rpi camera with zoom pi-app could help me. I am using this camera because I imagined that it could be the cheapest and fastest (more integrated) option for RPi4, instead of using an usb expensive videoconferencing camera; also adding usb headset at the same time, could probably create a bottleneck for zoom at the usb port. Excuse me if i have sent the same message twice ! I run out of phone battery.

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 8:34 pm

Xolarwind wrote:
Fri Oct 09, 2020 8:03 pm
The problem now is: NO zoom video from my camera. I have problems with my video using original rpi camera module v2 conected to ISP port. Zoom gave me the only option to select bcm2835 video ISP (broadcom chip via ISP) but video does not ever work. Can somebody figure out what could be the problem? ... it could be a problem with the box86 emulator ? So the original RPi camera (via ARM processor GPU) is not recognized?
OK I've asked the box86 developer if he knows if anyone has tried a RPi camera.
He suggests you run box86 in debug mode to try to check for problems.
Which means you should run this:

Code: Select all

cd zoom
BOX86_DLSYM_ERROR=1 box86 zoom
Play around with video input, then post the output from the terminal.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 10:27 pm

brainsys wrote:
Fri Oct 09, 2020 8:00 pm
Botspot wrote:
Fri Oct 09, 2020 7:35 pm
brainsys wrote:
Fri Oct 09, 2020 6:54 pm
Sound is an issue. After restarting pulseaudio I could get sound through the speakers on one setting but it sounded rough. Rome wan't built in a day - and what you have done is very promising. Please stick at it and an empire is at hand.
I would not recommend using pulseaudio. Try to keep it pure ALSA and it should work better. Manually select an output device by right-clicking on the taskbar's sound icon -> Audio Outputs -> Analog.
The first run through showed it could not find pactl. So installed pulseaudio-utils. It then said the pulseaudio daemon wasn't running so I installed pulseaudio. I'll try uninstalling pulseaudio and do as you suggest. But too much pizza'n'plonk to do it safely this evening :)
Today I am experiencing the same thing as you are - no audio unless pulseaudio is installed. :?
After installing pulseaudio, I ran the command 'pulseaudio' in a separate terminal before launching Zoom. The audio was perfect.
However before then, I ran 'pulseaudio' while Zoom was loading, and the sound quality was very choppy & rough.

Try doing what I did: run pulseaudio first, then launch Zoom, and see if it's any better.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

ViaKonsultisto
Posts: 1
Joined: Mon Oct 14, 2019 7:45 pm

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 10:37 pm

Thanks a lot for Pi-Apps. So fas I have installed and tried:
1. ZOOM (using an old USB camera Creative HD 720p)
2. CommanderPi (my favourite)
3. Power Tools
4. Conky (using all the time...)

I am rather an ignorant, so thank you very much for good description and help. I did not have any spacial problems with installation
Salutojn! :) Via Konsultisto

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Fri Oct 09, 2020 11:48 pm

OK I've made several changes to the Zoom app. I fixed a couple bugs, and added pulseaudio.
Next time you launch Pi-Apps, it should notify you that the Zoom app can be updated.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Sun Oct 11, 2020 9:23 pm

I have installed zoom in another RPi 4b+ with raspberry pi camera v2 with raspbian buster (raspberry pi OS already updated and upgraded). I have used zoom installation app from the new updated pi- apps today.I have pulse audio installed and alsa installed. But... box86 is not installing because cmake is not present. So i installed cmake, then installed box86 from terminal, then the zoom installation app from pi app overwriting box86 with the last box86 version as prompted. I have had the following problems:
1) libxcb-xtest library absent.. zoom not running. I installed with sudo apt-get install libxcb-xtest*..
2) GIMP open source for linux (GNU manipulation program) was erased by
the zoom installation app ( one of the steps is deletting GIMP). Mypaint was also removed. Reinstalling GIMP brings zoom not working. The terminal hangs up after initializing zoom. I dont know if this problem can be solved, but GIMP or another GNU manipulation program is fundamental for students. It is imposible to have zoom and GIMP installed at the same time?
3) without GIMP and mypaint... and with the mentioned library installed manually zoom app finally runs.. but. Audio is not working with the new modified app. In the old app zoo.pi app days ago... i have to fight with zoom selections but worked (I have raspbian buster and pulse audio installed). I have usb audio headset with headphones and integrated mic (logitech h370 headset) compatible with linux and zoom. It has an audio board connecting via usb, so rpi audio, zoom web and google meet works perfect selecting the correct audio on the headset. But now with the new pi zoom desktop over box86 installed with the modified app... does not work. It permanently selects bcm2835 audio and when i force zoom configuration to logitech h370 audio usb it does not work (it gave me the option, marked it as selected, but did no worked). Reinitiallizing zoom via the appa only returned to bcm2835 audio on zoom. Logitech headset mic works and is autoselected by zoom.
4) RPI camera v2 via ISP still not working. Today i will try box86 in debug mode and post terminal screen.

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Sun Oct 11, 2020 11:59 pm

Xolarwind wrote:
Sun Oct 11, 2020 9:23 pm
But... box86 is not installing because cmake is not present. So i installed cmake, then installed box86 from terminal, then the zoom installation app from pi app overwriting box86 with the last box86 version as prompted.
I hope that's old news, because that should have been fixed.
Xolarwind wrote:
Sun Oct 11, 2020 9:23 pm
I have had the following problems:
1) libxcb-xtest library absent.. zoom not running. I installed with sudo apt-get install libxcb-xtest*..
After installing that, did zoom work?
Xolarwind wrote:
Sun Oct 11, 2020 9:23 pm
2) GIMP open source for linux (GNU manipulation program) was erased by
the zoom installation app ( one of the steps is deletting GIMP). Mypaint was also removed. Reinstalling GIMP brings zoom not working. The terminal hangs up after initializing zoom. I dont know if this problem can be solved, but GIMP or another GNU manipulation program is fundamental for students. It is imposible to have zoom and GIMP installed at the same time?
Hmm that must be a dependency problem. Like Zoom depends on package X, GIMP depends on package Y, and for some reason apt-get won't allow for both package X and package Y to be installed at once. I will see if there's anything I can do about it.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 3:40 am

...I hope that's old news, because that should have been fixed.....
#Yes, but only after installing c-make manually first, the zoom pi app and box86 compiles and installs ok.

....sudo apt-get install libxcb-xtest*..
After installing that, did zoom work?...
#Yes, it did. But audio (headphones) from usb card (logitech h370 usb headset) did not work properly, i had no audio and i can not select usb logitech h370 usb audio (it showed the option, but did not give access to select it), so bcm 2835 audio by default was the only fixed / selected option. The headset works ok on zoom web. I cannot change the option in zoom app (clicking on the option does not work). I checked out that the usb audio output is selected in raspberry pi system (pulse audio is using it by default, and the sound works ok for other applications in the headset). Integrated mic from the same headset/ usb sound card worked ok on zoom app and zoom web (option appeared selected by default every time on zoom).

Video from isp connected rpi camera module V2 did not work (selection appears as bcm2835 video). bcm2835 v4l2 driver is enabled in /etc/modules and the camera is enabled in raspi-config.
The camera works properly on zoom web and other applications.

Thank you very much for your answer!
I will forward terminal console text with box86 debugging info for video in the next post.

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 4:35 am

Terminal console in box86 debug mode for zoom app on RPI4b 4Gb CPU overclocked to 1750 mhz, GPU not overclocked set to 512 GPU mem, swap file set to 2000. Video (NOT WORKING) from V2 camera module (SONY IMX219 sensor) conected to MIPI CSI PORT (camera interface) during zoom app initialization and with video camera activated. Audio: Logitech USB headset (h570e). I previosuly posted h370, but it is h570e (sorry for the mistake). Audio setting in zoom (mic via USB headset h570e and audio via bcm2835, could not select h570e usb audio, but the option is there).
Camera, USB headset mic and audio works ok on zoom web and other apps (reaper, google meet, etc)
I hope you can solve it.
Thank you very much in advance !
:)

Code: Select all

NO BOX86 DEBUG MODE. INITIALIZING ZOOM
Launching pulseaudio.
the pulsepid is 12601
/home/pi/zoom/runzoom.sh: línea 3: pulseaudio: orden no encontrada
Launching Zoom.
Box86 with Dynarec v0.1.3 2375d707 built on Oct 11 2020 23:30:10
sh: 1: pactl: not found
zoom started.
Client: Breakpad is using Single Client Mode! client fd = -1
sh: 1: pactl: not found
[CZPClientLogMgr::LogClientEnvironment] [MacAddr: DC:A6:32:52:42:32][client: Linux][OS: Raspbian GNU/Linux 10 (buster)][Hardware: CPU Core:4 Frenquency:1.8 G Memory size:3397MB CPU Brand:              Intel(R) Pentium(R) 4 CPU 1800MHz GPU Brand:][Req ID: ]
Linux Client Version is 5.3.469451.0927
QSG_RENDER_LOOP is 
XDG_CURRENT_DESKTOP = LXDE;   GDMSESSION = lightdm-xsession
Graphics Card Info:: 
Zoom package arch is 32bit, runing OS arch is i386
AppIconMgr::systemDesktopName log Desktop Name: LXDE-pi 
sh: 1: pactl: not found
link image0 hasn't been detected!
Could not resolve property : pattern0
Error: Send error, 22 Argumento inválido
Error: Send error, 22 Argumento inválido
Error: Send error, 22 Argumento inválido

BOX 86 DEBUG MODE / zoom APP INITIALIZING

Code: Select all

pi@raspberrypi:~ $ cd zoom
pi@raspberrypi:~/zoom $ BOX86_DLSYM_ERROR=1 box86 zoom
Box86 with Dynarec v0.1.3 2375d707 built on Oct 11 2020 23:30:10
sh: 1: pactl: not found
zoom started.
Client: Breakpad is using Single Client Mode! client fd = -1
Call to dlopen("/home/pi/zoom/platforms/libqxcb.so"/0x6160308, 1)
dlopen: New handle 0x1 (/home/pi/zoom/platforms/libqxcb.so), dlopened=1
Call to dlsym(0x1, qt_plugin_instance) :0xb6f13fb0
Call to dlopen("libXcursor.so.1"/0x63f6eb0, 1)
dlopen: New handle 0x2 (libXcursor.so.1), dlopened=1
Call to dlsym(0x2, XcursorLibraryLoadCursor) :0x63f7288
Call to dlsym(0x2, XcursorGetTheme) :0x63f7299
Call to dlsym(0x2, XcursorSetTheme) :0x63f72aa
Call to dlsym(0x2, XcursorGetDefaultSize) :0x63f72bb
Call to dlopen("/home/pi/zoom/xcbglintegrations/libqxcb-glx-integration.so"/0x64e4b10, 1)
dlopen: New handle 0x3 (/home/pi/zoom/xcbglintegrations/libqxcb-glx-integration.so), dlopened=1
Call to dlsym(0x3, qt_plugin_instance) :0xae0785b0
Call to dlopen("/home/pi/zoom/platforminputcontexts/libcomposeplatforminputcontextplugin.so"/0x654e278, 1)
dlopen: New handle 0x4 (/home/pi/zoom/platforminputcontexts/libcomposeplatforminputcontextplugin.so), dlopened=1
Call to dlsym(0x4, qt_plugin_instance) :0xa8c37d90
Call to dlsym((nil), qmlmemprofile_stats) :(nil)
Call to dlsym((nil), qmlmemprofile_clear) :(nil)
Call to dlsym((nil), qmlmemprofile_enable) :(nil)
Call to dlsym((nil), qmlmemprofile_disable) :(nil)
Call to dlsym((nil), qmlmemprofile_push_location) :(nil)
Call to dlsym((nil), qmlmemprofile_pop_location) :(nil)
Call to dlsym((nil), qmlmemprofile_save) :(nil)
Call to dlsym((nil), qmlmemprofile_is_enabled) :(nil)
sh: 1: pactl: not found
Call to dlopen("/home/pi/zoom/imageformats/libqsvg.so"/0x71b4ab8, 1)
dlopen: New handle 0x5 (/home/pi/zoom/imageformats/libqsvg.so), dlopened=1
Call to dlsym(0x5, qt_plugin_instance) :0xb6f0c0c0
[CZPClientLogMgr::LogClientEnvironment] [MacAddr: DC:A6:32:52:42:32][client: Linux][OS: Raspbian GNU/Linux 10 (buster)][Hardware: CPU Core:4 Frenquency:1.8 G Memory size:3397MB CPU Brand:              Intel(R) Pentium(R) 4 CPU 1800MHz GPU Brand:][Req ID: ]
Linux Client Version is 5.3.469451.0927
QSG_RENDER_LOOP is 
XDG_CURRENT_DESKTOP = LXDE;   GDMSESSION = lightdm-xsession
Graphics Card Info:: 
Zoom package arch is 32bit, runing OS arch is i386
AppIconMgr::systemDesktopName log Desktop Name: LXDE-pi 
Call to dlopen("libdbus-1.so.3"/0x8ad0020, 101)
dlopen: New handle 0x6 (libdbus-1.so.3), dlopened=0
Call to dlsym(0x6, dbus_connection_open_private) :0x417c369
Call to dlsym(0x6, dbus_threads_init_default) :0x417c37a
Call to dlsym(0x6, dbus_error_init) :0x417c38b
Call to dlsym(0x6, dbus_error_free) :0x417c39c
Call to dlsym(0x6, dbus_bus_get_private) :0x417c3ad
Call to dlsym(0x6, dbus_bus_get_unique_name) :0x417c3be
Call to dlsym(0x6, dbus_connection_can_send_type) :0x417c3cf
Call to dlsym(0x6, dbus_connection_set_exit_on_disconnect) :0x417c3e0
Call to dlsym(0x6, dbus_connection_set_watch_functions) :0x417c3f1
Call to dlsym(0x6, dbus_watch_get_flags) :0x417c402
Call to dlsym(0x6, dbus_watch_get_unix_fd) :0x417c413
Call to dlsym(0x6, dbus_watch_get_enabled) :0x417c424
Call to dlsym(0x6, dbus_connection_set_timeout_functions) :0x417c435
Call to dlsym(0x6, dbus_connection_set_dispatch_status_function) :0x417c446
Call to dlsym(0x6, dbus_connection_add_filter) :0x417c457
Call to dlsym(0x6, dbus_connection_get_is_connected) :0x417c468
Call to dlsym(0x6, dbus_bus_add_match) :0x417c479
Call to dlsym(0x6, dbus_message_new_method_call) :0x417c48a
Call to dlsym(0x6, dbus_message_set_auto_start) :0x417c49b
Call to dlsym(0x6, dbus_message_iter_init_append) :0x417c4ac
Call to dlsym(0x6, dbus_message_iter_append_basic) :0x417c4bd
Call to dlsym(0x6, dbus_error_init) :0x417c4ce
Call to dlsym(0x6, dbus_error_free) :0x417c4df
Call to dlsym(0x6, dbus_connection_send_with_reply_and_block) :0x417c4f0
Call to dlsym(0x6, dbus_timeout_get_enabled) :0x417c501
Call to dlsym(0x6, dbus_timeout_get_interval) :0x417c512
Call to dlsym(0x6, dbus_message_unref) :0x417c523
Call to dlsym(0x6, dbus_error_is_set) :0x417c534
Call to dlsym(0x6, dbus_error_is_set) :0x417c545
Call to dlsym(0x6, dbus_bus_remove_match) :0x417c556
sh: 1: pactl: not found
Call to dlsym(0x6, dbus_message_get_type) :0x417c567
Call to dlsym(0x6, dbus_message_get_path) :0x417c578
Call to dlsym(0x6, dbus_message_get_interface) :0x417c589
Call to dlsym(0x6, dbus_message_get_member) :0x417c59a
Call to dlsym(0x6, dbus_message_get_sender) :0x417c5ab
Call to dlsym(0x6, dbus_message_get_signature) :0x417c5bc
Call to dlsym(0x6, dbus_message_ref) :0x417c5cd
Call to dlsym(0x6, dbus_message_iter_init) :0x417c5de
Call to dlsym(0x6, dbus_message_iter_get_arg_type) :0x417c5ef
Call to dlsym(0x6, dbus_message_iter_get_basic) :0x417c600
Call to dlsym(0x6, dbus_message_iter_next) :0x417c611
Call to dlsym(0x6, dbus_message_unref) :0x417c622
Call to dlsym(0x6, dbus_message_unref) :0x417c633
Call to dlopen("/home/pi/zoom/QtQuick.2/libqtquick2plugin.so"/0x92f101a8, 1)
dlopen: New handle 0x7 (/home/pi/zoom/QtQuick.2/libqtquick2plugin.so), dlopened=1
Call to dlsym(0x7, qt_plugin_instance) :0xaefe7ed0
Call to dlopen("/home/pi/zoom/QtQuick/Controls/libqtquickcontrolsplugin.so"/0x92a59bf8, 1)
dlopen: New handle 0x8 (/home/pi/zoom/QtQuick/Controls/libqtquickcontrolsplugin.so), dlopened=1
Call to dlsym(0x8, qt_plugin_instance) :0x9245a7f0
Call to dlopen("/home/pi/zoom/QtQuick/Layouts/libqquicklayoutsplugin.so"/0x92ac8178, 1)
dlopen: New handle 0x9 (/home/pi/zoom/QtQuick/Layouts/libqquicklayoutsplugin.so), dlopened=1
Call to dlsym(0x9, qt_plugin_instance) :0xa1268c20
Call to dlopen("/home/pi/zoom/QtQuick/Window.2/libwindowplugin.so"/0x92aeb920, 1)
dlopen: New handle 0xa (/home/pi/zoom/QtQuick/Window.2/libwindowplugin.so), dlopened=1
Call to dlsym(0xa, qt_plugin_instance) :0xae048e70
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3f96ffb
Call to dlopen("/home/pi/zoom/imageformats/libqdds.so"/0x9fb9168, 1)
dlopen: New handle 0xb (/home/pi/zoom/imageformats/libqdds.so), dlopened=1
Call to dlsym(0xb, qt_plugin_instance) :0x93014650
Call to dlopen("/home/pi/zoom/imageformats/libqgif.so"/0x9e21038, 1)
dlopen: New handle 0xc (/home/pi/zoom/imageformats/libqgif.so), dlopened=1
Call to dlsym(0xc, qt_plugin_instance) :0x9300f2b0
Call to dlopen("/home/pi/zoom/imageformats/libqicns.so"/0x9e39400, 1)
dlopen: New handle 0xd (/home/pi/zoom/imageformats/libqicns.so), dlopened=1
Call to dlsym(0xd, qt_plugin_instance) :0x93003330
Call to dlopen("/home/pi/zoom/imageformats/libqico.so"/0x9ab3bb0, 1)
dlopen: New handle 0xe (/home/pi/zoom/imageformats/libqico.so), dlopened=1
Call to dlsym(0xe, qt_plugin_instance) :0x8cfc42d0
Call to dlopen("/home/pi/zoom/imageformats/libqjp2.so"/0x9ac7388, 1)
dlopen: New handle 0xf (/home/pi/zoom/imageformats/libqjp2.so), dlopened=1
Call to dlsym(0xf, qt_plugin_instance) :0x8cf93cd0
Call to dlopen("/home/pi/zoom/imageformats/libqjpeg.so"/0xa032738, 1)
dlopen: New handle 0x10 (/home/pi/zoom/imageformats/libqjpeg.so), dlopened=1
Call to dlsym(0x10, qt_plugin_instance) :0x8cf21690
Call to dlopen("/home/pi/zoom/imageformats/libqmng.so"/0xa04f260, 1)
dlopen: New handle 0x11 (/home/pi/zoom/imageformats/libqmng.so), dlopened=1
Call to dlsym(0x11, qt_plugin_instance) :0x8ced3db0
Call to dlopen("/home/pi/zoom/imageformats/libqtga.so"/0xa060a08, 1)
dlopen: New handle 0x12 (/home/pi/zoom/imageformats/libqtga.so), dlopened=1
Call to dlsym(0x12, qt_plugin_instance) :0x8ce8a780
Call to dlopen("/home/pi/zoom/imageformats/libqtiff.so"/0xa010240, 1)
dlopen: New handle 0x13 (/home/pi/zoom/imageformats/libqtiff.so), dlopened=1
Call to dlsym(0x13, qt_plugin_instance) :0x8ce1c440
Call to dlopen("/home/pi/zoom/imageformats/libqwbmp.so"/0xa093880, 1)
dlopen: New handle 0x14 (/home/pi/zoom/imageformats/libqwbmp.so), dlopened=1
Call to dlsym(0x14, qt_plugin_instance) :0x8ce16820
Call to dlopen("/home/pi/zoom/imageformats/libqwebp.so"/0xa0a6218, 1)
dlopen: New handle 0x15 (/home/pi/zoom/imageformats/libqwebp.so), dlopened=1
Call to dlsym(0x15, qt_plugin_instance) :0x8cdbb610
link image0 hasn't been detected!
Could not resolve property : pattern0
Call to dlsym(0x6, dbus_connection_dispatch) :0x417c644
Call to dlopen("libpulse.so.0"/0xb5cf180c, 2)
dlopen: New handle 0x16 (libpulse.so.0), dlopened=1
Call to dlsym(0x16, pa_bytes_per_second) :0xb55f8f8
Call to dlsym(0x16, pa_context_connect) :0xb55f909
Call to dlsym(0x16, pa_context_disconnect) :0xb55f91a
Call to dlsym(0x16, pa_context_errno) :0xb55f92b
Call to dlsym(0x16, pa_context_get_protocol_version) :0xb55f93c
Call to dlsym(0x16, pa_context_get_server_info) :0xb55f94d
Call to dlsym(0x16, pa_context_get_sink_info_list) :0xb55f95e
Call to dlsym(0x16, pa_context_get_sink_info_by_index) :0xb55f96f
Call to dlsym(0x16, pa_context_get_sink_info_by_name) :0xb55f980
Call to dlsym(0x16, pa_context_get_sink_input_info) :0xb55f991
Call to dlsym(0x16, pa_context_get_source_info_by_index) :0xb55f9a2
Call to dlsym(0x16, pa_context_get_source_info_by_name) :0xb55f9b3
Call to dlsym(0x16, pa_context_get_source_info_list) :0xb55f9c4
Call to dlsym(0x16, pa_context_get_state) :0xb55f9d5
Call to dlsym(0x16, pa_context_new) :0xb55f9e6
Call to dlsym(0x16, pa_context_set_sink_input_volume) :0xb55f9f7
Call to dlsym(0x16, pa_context_set_sink_input_mute) :0xb55fa08
Call to dlsym(0x16, pa_context_set_source_volume_by_index) :0xb55fa19
Call to dlsym(0x16, pa_context_set_source_mute_by_index) :0xb55fa2a
Call to dlsym(0x16, pa_context_set_state_callback) :0xb55fa3b
Call to dlsym(0x16, pa_context_unref) :0xb55fa4c
Call to dlsym(0x16, pa_context_set_subscribe_callback) :0xb55fa5d
Call to dlsym(0x16, pa_context_subscribe) :0xb55fa6e
Call to dlsym(0x16, pa_cvolume_set) :0xb55fa7f
Call to dlsym(0x16, pa_operation_get_state) :0xb55fa90
Call to dlsym(0x16, pa_operation_unref) :0xb55faa1
Call to dlsym(0x16, pa_stream_connect_playback) :0xb55fab2
Call to dlsym(0x16, pa_stream_connect_record) :0xb55fac3
Call to dlsym(0x16, pa_stream_disconnect) :0xb55fad4
Call to dlsym(0x16, pa_stream_drop) :0xb55fae5
Call to dlsym(0x16, pa_stream_get_device_index) :0xb55faf6
Call to dlsym(0x16, pa_stream_get_index) :0xb55fb07
Call to dlsym(0x16, pa_stream_get_latency) :0xb55fb18
Call to dlsym(0x16, pa_stream_get_sample_spec) :0xb55fb29
Call to dlsym(0x16, pa_stream_get_state) :0xb55fb3a
Call to dlsym(0x16, pa_stream_get_device_name) :0xb55fb4b
Call to dlsym(0x16, pa_stream_new) :0xb55fb5c
Call to dlsym(0x16, pa_stream_peek) :0xb55fb6d
Call to dlsym(0x16, pa_stream_readable_size) :0xb55fb7e
Call to dlsym(0x16, pa_stream_set_buffer_attr) :0xb55fb8f
Call to dlsym(0x16, pa_stream_set_overflow_callback) :0xb55fba0
Call to dlsym(0x16, pa_stream_set_read_callback) :0xb55fbb1
Call to dlsym(0x16, pa_stream_set_state_callback) :0xb55fbc2
Call to dlsym(0x16, pa_stream_set_underflow_callback) :0xb55fbd3
Call to dlsym(0x16, pa_stream_set_write_callback) :0xb55fbe4
Call to dlsym(0x16, pa_stream_set_moved_callback) :0xb55fbf5
Call to dlsym(0x16, pa_stream_unref) :0xb55fc06
Call to dlsym(0x16, pa_stream_writable_size) :0xb55fc17
Call to dlsym(0x16, pa_stream_write) :0xb55fc28
Call to dlsym(0x16, pa_strerror) :0xb55fc39
Call to dlsym(0x16, pa_threaded_mainloop_free) :0xb55fc4a
Call to dlsym(0x16, pa_threaded_mainloop_get_api) :0xb55fc5b
Call to dlsym(0x16, pa_threaded_mainloop_lock) :0xb55fc6c
Call to dlsym(0x16, pa_threaded_mainloop_new) :0xb55fc7d
Call to dlsym(0x16, pa_threaded_mainloop_signal) :0xb55fc8e
Call to dlsym(0x16, pa_threaded_mainloop_start) :0xb55fc9f
Call to dlsym(0x16, pa_threaded_mainloop_stop) :0xb55fcb0
Call to dlsym(0x16, pa_threaded_mainloop_unlock) :0xb55fcc1
Call to dlsym(0x16, pa_threaded_mainloop_wait) :0xb55fcd2
Call to dlsym(0x16, pa_context_set_default_sink) :0xb55fce3
Call to dlsym(0x16, pa_context_unload_module) :0xb55fcf4
Call to dlsym(0x16, pa_context_get_client_info_list) :0xb55fd05
Call to dlsym(0x16, pa_context_get_sink_input_info_list) :0xb55fd16
Call to dlsym(0x16, pa_context_load_module) :0xb55fd27
Call to dlsym(0x16, pa_context_move_sink_input_by_index) :0xb5624e8
Call to dlsym(0x16, pa_usec_to_bytes) :0xb562938
Call to dlsym(0x16, pa_context_set_sink_volume_by_index) :0xb562d88
Call to dlopen("libasound.so.2"/0xb5cf21be, 2)
dlopen: New handle 0x17 (libasound.so.2), dlopened=1
Call to dlsym(0x17, snd_device_name_free_hint) :0xb556998
Call to dlsym(0x17, snd_device_name_get_hint) :0xb5569a9
Call to dlsym(0x17, snd_device_name_hint) :0xb5569ba
Call to dlsym(0x17, snd_pcm_avail_update) :0xb5569cb
Call to dlsym(0x17, snd_pcm_close) :0xb5569dc
Call to dlsym(0x17, snd_pcm_delay) :0xb5569ed
Call to dlsym(0x17, snd_pcm_drop) :0xb5569fe
Call to dlsym(0x17, snd_pcm_open) :0xb556a0f
Call to dlsym(0x17, snd_pcm_prepare) :0xb556a20
Call to dlsym(0x17, snd_pcm_readi) :0xb556a31
Call to dlsym(0x17, snd_pcm_recover) :0xb556a42
Call to dlsym(0x17, snd_pcm_resume) :0xb556a53
Call to dlsym(0x17, snd_pcm_reset) :0xb556a64
Call to dlsym(0x17, snd_pcm_state) :0xb556a75
Call to dlsym(0x17, snd_pcm_set_params) :0xb556a86
Call to dlsym(0x17, snd_pcm_get_params) :0xb556a97
Call to dlsym(0x17, snd_pcm_start) :0xb556aa8
Call to dlsym(0x17, snd_pcm_stream) :0xb556ab9
Call to dlsym(0x17, snd_pcm_frames_to_bytes) :0xb556aca
Call to dlsym(0x17, snd_pcm_bytes_to_frames) :0xb556adb
Call to dlsym(0x17, snd_pcm_wait) :0xb556aec
Call to dlsym(0x17, snd_pcm_writei) :0xb556afd
Call to dlsym(0x17, snd_pcm_info_get_class) :0xb556b0e
Call to dlsym(0x17, snd_pcm_info_get_subdevices_avail) :0xb556b1f
Call to dlsym(0x17, snd_pcm_info_get_subdevice_name) :0xb556b30
Call to dlsym(0x17, snd_pcm_info_set_subdevice) :0xb556b41
Call to dlsym(0x17, snd_pcm_info_get_id) :0xb556b52
Call to dlsym(0x17, snd_pcm_info_set_device) :0xb556b63
Call to dlsym(0x17, snd_pcm_info_set_stream) :0xb556b74
Call to dlsym(0x17, snd_pcm_info_get_name) :0xb556b85
Call to dlsym(0x17, snd_pcm_info_get_subdevices_count) :0xb556b96
Call to dlsym(0x17, snd_pcm_info_sizeof) :0xb556ba7
Call to dlsym(0x17, snd_pcm_hw_params) :0xb556bb8
Call to dlsym(0x17, snd_pcm_hw_params_malloc) :0xb556bc9
Call to dlsym(0x17, snd_pcm_hw_params_free) :0xb556bda
Call to dlsym(0x17, snd_pcm_hw_params_any) :0xb556beb
Call to dlsym(0x17, snd_pcm_hw_params_set_access) :0xb556bfc
Call to dlsym(0x17, snd_pcm_hw_params_set_format) :0xb556c0d
Call to dlsym(0x17, snd_pcm_hw_params_set_channels) :0xb556c1e
Call to dlsym(0x17, snd_pcm_hw_params_set_rate_near) :0xb556c2f
Call to dlsym(0x17, snd_pcm_hw_params_set_buffer_size_near) :0xb556c40
Call to dlsym(0x17, snd_card_next) :0xb556c51
Call to dlsym(0x17, snd_card_get_name) :0xb556c62
Call to dlsym(0x17, snd_config_update) :0xb556c73
Call to dlsym(0x17, snd_config_copy) :0xb556c84
Call to dlsym(0x17, snd_config_get_id) :0xb556c95
Call to dlsym(0x17, snd_ctl_open) :0xb556ca6
Call to dlsym(0x17, snd_ctl_close) :0xb556cb7
Call to dlsym(0x17, snd_ctl_card_info) :0xb556cc8
Call to dlsym(0x17, snd_ctl_card_info_sizeof) :0xb556cd9
Call to dlsym(0x17, snd_ctl_card_info_get_id) :0xb556cea
Call to dlsym(0x17, snd_ctl_card_info_get_name) :0xb556cfb
Call to dlsym(0x17, snd_ctl_pcm_next_device) :0xb556d0c
Call to dlsym(0x17, snd_ctl_pcm_info) :0xb556d1d
Call to dlsym(0x17, snd_mixer_load) :0xb556d2e
Call to dlsym(0x17, snd_mixer_free) :0xb556d3f
Call to dlsym(0x17, snd_mixer_detach) :0xb556d50
Call to dlsym(0x17, snd_mixer_close) :0xb556d61
Call to dlsym(0x17, snd_mixer_open) :0xb556d72
Call to dlsym(0x17, snd_mixer_attach) :0xb556d83
Call to dlsym(0x17, snd_mixer_first_elem) :0xb556d94
Call to dlsym(0x17, snd_mixer_elem_next) :0xb556da5
Call to dlsym(0x17, snd_mixer_selem_get_name) :0xb556db6
Call to dlsym(0x17, snd_mixer_selem_is_active) :0xb556dc7
Call to dlsym(0x17, snd_mixer_selem_register) :0xb5934a8
Call to dlsym(0x17, snd_mixer_selem_set_playback_volume_all) :0xb595c00
Call to dlsym(0x17, snd_mixer_selem_get_playback_volume) :0xb596050
Call to dlsym(0x17, snd_mixer_selem_has_playback_volume) :0xb5964a0
Call to dlsym(0x17, snd_mixer_selem_set_playback_volume_range) :0xb5968f0
Call to dlsym(0x17, snd_mixer_selem_get_playback_volume_range) :0xb596d40
Call to dlsym(0x17, snd_mixer_selem_has_playback_switch) :0xb597190
Call to dlsym(0x17, snd_mixer_selem_get_playback_switch) :0xb5975e0
Call to dlsym(0x17, snd_mixer_selem_set_playback_switch_all) :0xb597a30
Call to dlsym(0x17, snd_mixer_selem_has_capture_switch) :0xb597e80
Call to dlsym(0x17, snd_mixer_selem_get_capture_switch) :0xb5982d0
Call to dlsym(0x17, snd_mixer_selem_set_capture_switch_all) :0xb598720
Call to dlsym(0x17, snd_mixer_selem_has_capture_volume) :0xb598b70
Call to dlsym(0x17, snd_mixer_selem_set_capture_volume_all) :0xb598fc0
Call to dlsym(0x17, snd_mixer_selem_get_capture_volume) :0xb599410
Call to dlsym(0x17, snd_mixer_selem_set_capture_volume_range) :0xb599860
Call to dlsym(0x17, snd_mixer_selem_get_capture_volume_range) :0xb599cb0
Call to dlsym(0x17, snd_dlopen) :0xb59a100
Call to dlsym(0x17, snd_dlclose) :0xb59a550
Call to dlsym(0x17, snd_config) :0x864d7090
Call to dlsym(0x17, snd_config_search) :0xb59a9a0
Call to dlsym(0x17, snd_config_get_string) :0xb59adf0
Call to dlsym(0x17, snd_config_search_definition) :0xb59b240
Call to dlsym(0x17, snd_config_get_type) :0xb59b690
Call to dlsym(0x17, snd_config_delete) :0xb59bae0
Call to dlsym(0x17, snd_config_iterator_entry) :0xb59bf30
Call to dlsym(0x17, snd_config_iterator_first) :0xb59c380
Call to dlsym(0x17, snd_config_iterator_next) :0xb59c7d0
Call to dlsym(0x17, snd_config_iterator_end) :0xb59cc20
Call to dlsym(0x17, snd_config_delete_compound_members) :0xb59d070
Call to dlsym(0x17, snd_config_get_integer) :0xb59d4c0
Call to dlsym(0x17, snd_config_get_bool) :0xb59d910
Call to dlsym(0x17, snd_dlsym) :0xb59dd60
Call to dlsym(0x17, snd_strerror) :0xb59e1b0
Call to dlsym(0x17, snd_lib_error) :0x2bc0c08
Call to dlsym(0x17, snd_lib_error_set_handler) :0xb59e600
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3f96ffb
Call to dlopen(NULL, 1)
dlopen: New handle 0x18 ((null)), dlopened=0
Call to dlsym(0x18, glXGetProcAddressARB) :(nil)
Call to dlsym(Self, "glXGetProcAddressARB") Symbol not found
Call to dlclose(0x18)
Call to dlopen("libGL.so"/0xa05429d0, 1)
dlopen: New handle 0x19 (libGL.so), dlopened=0
Call to dlsym(0x19, glXGetProcAddressARB) :0xa0543518
Calling glXGetProcAddress("glXSwapIntervalMESA") => 0x3f9701d
Calling glXGetProcAddress("glGenBuffers") => 0x3f9702e
Calling glXGetProcAddress("glBindBuffer") => 0x3f9703f
Calling glXGetProcAddress("glBufferData") => 0x3f97050
Calling glXGetProcAddress("glViewport") => 0x3f97061
Calling glXGetProcAddress("glDepthRange") => 0x3f97072
Calling glXGetProcAddress("glIsEnabled") => 0x3f97083
Calling glXGetProcAddress("glGetTexLevelParameteriv") => 0x3f97094
Calling glXGetProcAddress("glGetTexLevelParameterfv") => 0x3f970a5
Calling glXGetProcAddress("glGetTexParameteriv") => 0x3f970b6
Calling glXGetProcAddress("glGetTexParameterfv") => 0x3f970c7
Calling glXGetProcAddress("glGetTexImage") => 0x3f970d8
Calling glXGetProcAddress("glGetString") => 0x3f970e9
Calling glXGetProcAddress("glGetIntegerv") => 0x3f970fa
Calling glXGetProcAddress("glGetFloatv") => 0x3f9710b
Calling glXGetProcAddress("glGetError") => 0x3f9711c
Calling glXGetProcAddress("glGetDoublev") => 0x3f9712d
Calling glXGetProcAddress("glGetBooleanv") => 0x3f9713e
Calling glXGetProcAddress("glReadPixels") => 0x3f9714f
Calling glXGetProcAddress("glReadBuffer") => 0x3f97160
Calling glXGetProcAddress("glPixelStorei") => 0x3f97171
Calling glXGetProcAddress("glPixelStoref") => 0x3f97182
Calling glXGetProcAddress("glDepthFunc") => 0x3f97193
Calling glXGetProcAddress("glStencilOp") => 0x3f971a4
Calling glXGetProcAddress("glStencilFunc") => 0x3f971b5
Calling glXGetProcAddress("glLogicOp") => 0x3f971c6
Calling glXGetProcAddress("glBlendFunc") => 0x3f971d7
Calling glXGetProcAddress("glFlush") => 0x3f971e8
Calling glXGetProcAddress("glFinish") => 0x3f971f9
Calling glXGetProcAddress("glEnable") => 0x3f9720a
Calling glXGetProcAddress("glDisable") => 0x3f9721b
Calling glXGetProcAddress("glDepthMask") => 0x3f9722c
Calling glXGetProcAddress("glColorMask") => 0x3f9723d
Calling glXGetProcAddress("glStencilMask") => 0x3f9724e
Calling glXGetProcAddress("glClearDepth") => 0x3f9725f
Calling glXGetProcAddress("glClearStencil") => 0x3f97270
Calling glXGetProcAddress("glClearColor") => 0x3f97281
Calling glXGetProcAddress("glClear") => 0x3f97292
Calling glXGetProcAddress("glDrawBuffer") => 0x3f972a3
Calling glXGetProcAddress("glTexImage2D") => 0x3f972b4
Calling glXGetProcAddress("glTexImage1D") => 0x3f972c5
Calling glXGetProcAddress("glTexParameteriv") => 0x3f972d6
Calling glXGetProcAddress("glTexParameteri") => 0x3f972e7
Calling glXGetProcAddress("glTexParameterfv") => 0x3f972f8
Calling glXGetProcAddress("glTexParameterf") => 0x3f97309
Calling glXGetProcAddress("glScissor") => 0x3f9731a
Calling glXGetProcAddress("glPolygonMode") => 0x3f9732b
Calling glXGetProcAddress("glPointSize") => 0x3f9733c
Calling glXGetProcAddress("glLineWidth") => 0x3f9734d
Calling glXGetProcAddress("glHint") => 0x3f9735e
Calling glXGetProcAddress("glFrontFace") => 0x3f9736f
Calling glXGetProcAddress("glCullFace") => 0x3f97380
Calling glXGetProcAddress("glTranslatef") => 0x3f97391
Calling glXGetProcAddress("glTranslated") => 0x3f973a2
Calling glXGetProcAddress("glScalef") => 0x3f973b3
Calling glXGetProcAddress("glScaled") => 0x3f973c4
Calling glXGetProcAddress("glRotatef") => 0x3f973d5
Calling glXGetProcAddress("glRotated") => 0x3f973e6
Calling glXGetProcAddress("glPushMatrix") => 0x3f973f7
Calling glXGetProcAddress("glPopMatrix") => 0x7f073378
Calling glXGetProcAddress("glOrtho") => 0x7f073800
Calling glXGetProcAddress("glMultMatrixd") => 0x7f073c90
Calling glXGetProcAddress("glMultMatrixf") => 0x7f074120
Calling glXGetProcAddress("glMatrixMode") => 0x7f0745b0
Calling glXGetProcAddress("glLoadMatrixd") => 0x7f074a40
Calling glXGetProcAddress("glLoadMatrixf") => 0x7f074ed0
Calling glXGetProcAddress("glLoadIdentity") => 0x7f075360
Calling glXGetProcAddress("glFrustum") => 0x7f0757e8
Calling glXGetProcAddress("glIsList") => 0x7f075c70
Calling glXGetProcAddress("glGetTexGeniv") => 0x7f076100
Calling glXGetProcAddress("glGetTexGenfv") => 0x7f076590
Calling glXGetProcAddress("glGetTexGendv") => 0x7f076a20
Calling glXGetProcAddress("glGetTexEnviv") => 0x7f076eb0
Calling glXGetProcAddress("glGetTexEnvfv") => 0x7f077340
Calling glXGetProcAddress("glGetPolygonStipple") => 0x7f0777d0
Calling glXGetProcAddress("glGetPixelMapusv") => 0x7f077c60
Calling glXGetProcAddress("glGetPixelMapuiv") => 0x7f0780f0
Calling glXGetProcAddress("glGetPixelMapfv") => 0x7f078580
Calling glXGetProcAddress("glGetMaterialiv") => 0x7f078a10
Calling glXGetProcAddress("glGetMaterialfv") => 0x7f078ea0
Calling glXGetProcAddress("glGetMapiv") => 0x7f079328
Calling glXGetProcAddress("glGetMapfv") => 0x7f0797b0
Calling glXGetProcAddress("glGetMapdv") => 0x7f079c38
Calling glXGetProcAddress("glGetLightiv") => 0x7f07a0c8
Calling glXGetProcAddress("glGetLightfv") => 0x7f07a558
Calling glXGetProcAddress("glGetClipPlane") => 0x7f07a9e8
Calling glXGetProcAddress("glDrawPixels") => 0x7f07ae78
Calling glXGetProcAddress("glCopyPixels") => 0x7f07b308
Calling glXGetProcAddress("glPixelMapusv") => 0x7f07b798
Calling glXGetProcAddress("glPixelMapuiv") => 0x7f07bc28
Calling glXGetProcAddress("glPixelMapfv") => 0x7f07c0b8
Calling glXGetProcAddress("glPixelTransferi") => 0x7f07c548
Calling glXGetProcAddress("glPixelTransferf") => 0x7f07c9d8
Calling glXGetProcAddress("glPixelZoom") => 0x7f07ce60
Calling glXGetProcAddress("glAlphaFunc") => 0x7f07d2e8
Calling glXGetProcAddress("glEvalPoint2") => 0x7f07d778
Calling glXGetProcAddress("glEvalMesh2") => 0x7f07dc00
Calling glXGetProcAddress("glEvalPoint1") => 0x7f07e090
Calling glXGetProcAddress("glEvalMesh1") => 0x7f07e518
Calling glXGetProcAddress("glEvalCoord2fv") => 0x7f07e9a8
Calling glXGetProcAddress("glEvalCoord2f") => 0x7f07ee38
Calling glXGetProcAddress("glEvalCoord2dv") => 0x7f07f2c8
Calling glXGetProcAddress("glEvalCoord2d") => 0x7f07f758
Calling glXGetProcAddress("glEvalCoord1fv") => 0x7f07fbe8
Calling glXGetProcAddress("glEvalCoord1f") => 0x7f080078
Calling glXGetProcAddress("glEvalCoord1dv") => 0x7f080508
Calling glXGetProcAddress("glEvalCoord1d") => 0x7f080998
Calling glXGetProcAddress("glMapGrid2f") => 0x7f080e20
Calling glXGetProcAddress("glMapGrid2d") => 0x7f0812a8
Calling glXGetProcAddress("glMapGrid1f") => 0x7f081730
Calling glXGetProcAddress("glMapGrid1d") => 0x7f081bb8
Calling glXGetProcAddress("glMap2f") => 0x7f082040
Calling glXGetProcAddress("glMap2d") => 0x7f0824c8
Calling glXGetProcAddress("glMap1f") => 0x7f082950
Calling glXGetProcAddress("glMap1d") => 0x7f082dd8
Calling glXGetProcAddress("glPushAttrib") => 0x7f083268
Calling glXGetProcAddress("glPopAttrib") => 0x7f0836f0
Calling glXGetProcAddress("glAccum") => 0x7f083b78
Calling glXGetProcAddress("glIndexMask") => 0x7f084000
Calling glXGetProcAddress("glClearIndex") => 0x7f084490
Calling glXGetProcAddress("glClearAccum") => 0x7f084920
Calling glXGetProcAddress("glPushName") => 0x7f084da8
Calling glXGetProcAddress("glPopName") => 0x7f085230
Calling glXGetProcAddress("glPassThrough") => 0x7f0856c0
Calling glXGetProcAddress("glLoadName") => 0x7f085b48
Calling glXGetProcAddress("glInitNames") => 0x7f085fd0
Calling glXGetProcAddress("glRenderMode") => 0x7f086460
Calling glXGetProcAddress("glSelectBuffer") => 0x7f0868f0
Calling glXGetProcAddress("glFeedbackBuffer") => 0x7f086d80
Calling glXGetProcAddress("glTexGeniv") => 0x7f088b20
Calling glXGetProcAddress("glTexGeni") => 0x7f088f70
Calling glXGetProcAddress("glTexGenfv") => 0x7f0893c0
Calling glXGetProcAddress("glTexGenf") => 0x7f089810
Calling glXGetProcAddress("glTexGendv") => 0x7f089c60
Calling glXGetProcAddress("glTexGend") => 0x7f08a0e8
Calling glXGetProcAddress("glTexEnviv") => 0x7f08a570
Calling glXGetProcAddress("glTexEnvi") => 0x7f08a9f8
Calling glXGetProcAddress("glTexEnvfv") => 0x7f08ae80
Calling glXGetProcAddress("glTexEnvf") => 0x7f08b308
Calling glXGetProcAddress("glShadeModel") => 0x7f08b798
Calling glXGetProcAddress("glPolygonStipple") => 0x7f08bc28
Calling glXGetProcAddress("glMaterialiv") => 0x7f08c0b8
Calling glXGetProcAddress("glMateriali") => 0x7f08c540
Calling glXGetProcAddress("glMaterialfv") => 0x7f08c9d0
Calling glXGetProcAddress("glMaterialf") => 0x7f08ce58
Calling glXGetProcAddress("glLineStipple") => 0x7f08d2e8
Calling glXGetProcAddress("glLightModeliv") => 0x7f08d778
Calling glXGetProcAddress("glLightModeli") => 0x7f08dc08
Calling glXGetProcAddress("glLightModelfv") => 0x7f08e098
Calling glXGetProcAddress("glLightModelf") => 0x7f08e830
Calling glXGetProcAddress("glLightiv") => 0x7f08ecb8
Calling glXGetProcAddress("glLighti") => 0x7f08f140
Calling glXGetProcAddress("glLightfv") => 0x7f08f5c8
Calling glXGetProcAddress("glLightf") => 0x7f08fa50
Calling glXGetProcAddress("glFogiv") => 0x7f08fed8
Calling glXGetProcAddress("glFogi") => 0x7f090360
Calling glXGetProcAddress("glFogfv") => 0x7f0907e8
Calling glXGetProcAddress("glFogf") => 0x7f090c70
Calling glXGetProcAddress("glColorMaterial") => 0x7f091100
Calling glXGetProcAddress("glClipPlane") => 0x7f091588
Calling glXGetProcAddress("glVertex4sv") => 0x7f091a10
Calling glXGetProcAddress("glVertex4s") => 0x7f091e98
Calling glXGetProcAddress("glVertex4iv") => 0x7f092320
Calling glXGetProcAddress("glVertex4i") => 0x7f0927a8
Calling glXGetProcAddress("glVertex4fv") => 0x7f092c30
Calling glXGetProcAddress("glVertex4f") => 0x7f0930b8
Calling glXGetProcAddress("glVertex4dv") => 0x7f093540
Calling glXGetProcAddress("glVertex4d") => 0x7f0939c8
Calling glXGetProcAddress("glVertex3sv") => 0x7f093e50
Calling glXGetProcAddress("glVertex3s") => 0x7f0942d8
Calling glXGetProcAddress("glVertex3iv") => 0x7f094760
Calling glXGetProcAddress("glVertex3i") => 0x7f094be8
Calling glXGetProcAddress("glVertex3fv") => 0x7f095070
Calling glXGetProcAddress("glVertex3f") => 0x7f0954f8
Calling glXGetProcAddress("glVertex3dv") => 0x7f095980
Calling glXGetProcAddress("glVertex3d") => 0x7f095e08
Calling glXGetProcAddress("glVertex2sv") => 0x7f096290
Calling glXGetProcAddress("glVertex2s") => 0x7f096718
Calling glXGetProcAddress("glVertex2iv") => 0x7f096ba0
Calling glXGetProcAddress("glVertex2i") => 0x7f097028
Calling glXGetProcAddress("glVertex2fv") => 0x7f0974b0
Calling glXGetProcAddress("glVertex2f") => 0x7f097938
Calling glXGetProcAddress("glVertex2dv") => 0x7f097dc0
Calling glXGetProcAddress("glVertex2d") => 0x7f098248
Calling glXGetProcAddress("glTexCoord4sv") => 0x7f0986d8
Calling glXGetProcAddress("glTexCoord4s") => 0x7f098b68
Calling glXGetProcAddress("glTexCoord4iv") => 0x7f098ff8
Calling glXGetProcAddress("glTexCoord4i") => 0x7f099488
Calling glXGetProcAddress("glTexCoord4fv") => 0x7f099918
Calling glXGetProcAddress("glTexCoord4f") => 0x7f099da8
Calling glXGetProcAddress("glTexCoord4dv") => 0x7f09a238
Calling glXGetProcAddress("glTexCoord4d") => 0x7f09a6c8
Calling glXGetProcAddress("glTexCoord3sv") => 0x7f09ab58
Calling glXGetProcAddress("glTexCoord3s") => 0x7f09afe8
Calling glXGetProcAddress("glTexCoord3iv") => 0x7f09b478
Calling glXGetProcAddress("glTexCoord3i") => 0x7f09b908
Calling glXGetProcAddress("glTexCoord3fv") => 0x7f09bd98
Calling glXGetProcAddress("glTexCoord3f") => 0x7f09c228
Calling glXGetProcAddress("glTexCoord3dv") => 0x7f09c6b8
Calling glXGetProcAddress("glTexCoord3d") => 0x7f09cb48
Calling glXGetProcAddress("glTexCoord2sv") => 0x7f09cfd8
Calling glXGetProcAddress("glTexCoord2s") => 0x7f09d468
Calling glXGetProcAddress("glTexCoord2iv") => 0x7f09d8f8
Calling glXGetProcAddress("glTexCoord2i") => 0x7f09dd88
Calling glXGetProcAddress("glTexCoord2fv") => 0x7f09e218
Calling glXGetProcAddress("glTexCoord2f") => 0x7f09e6a8
Calling glXGetProcAddress("glTexCoord2dv") => 0x7f09eb38
Calling glXGetProcAddress("glTexCoord2d") => 0x7f09efc8
Calling glXGetProcAddress("glTexCoord1sv") => 0x7f09f458
Calling glXGetProcAddress("glTexCoord1s") => 0x7f09f8e8
Calling glXGetProcAddress("glTexCoord1iv") => 0x7f09fd78
Calling glXGetProcAddress("glTexCoord1i") => 0x7f0a0208
Calling glXGetProcAddress("glTexCoord1fv") => 0x7f0a0698
Calling glXGetProcAddress("glTexCoord1f") => 0x7f0a0b28
Calling glXGetProcAddress("glTexCoord1dv") => 0x7f0a0fb8
Calling glXGetProcAddress("glTexCoord1d") => 0x7f0a1448
Calling glXGetProcAddress("glRectsv") => 0x7f0a18d0
Calling glXGetProcAddress("glRects") => 0x7f0a1d58
Calling glXGetProcAddress("glRectiv") => 0x7f0a21e0
Calling glXGetProcAddress("glRecti") => 0x7f0a2668
Calling glXGetProcAddress("glRectfv") => 0x7f0a2af0
Calling glXGetProcAddress("glRectf") => 0x7f0a2f78
Calling glXGetProcAddress("glRectdv") => 0x7f0a3400
Calling glXGetProcAddress("glRectd") => 0x7f0a3888
Calling glXGetProcAddress("glRasterPos4sv") => 0x7f0a3d18
Calling glXGetProcAddress("glRasterPos4s") => 0x7f0a41a8
Calling glXGetProcAddress("glRasterPos4iv") => 0x7f0a4638
Calling glXGetProcAddress("glRasterPos4i") => 0x7f0a4ac8
Calling glXGetProcAddress("glRasterPos4fv") => 0x7f0a4f58
Calling glXGetProcAddress("glRasterPos4f") => 0x7f0a53e8
Calling glXGetProcAddress("glRasterPos4dv") => 0x7f0a5878
Calling glXGetProcAddress("glRasterPos4d") => 0x7f0a5d08
Calling glXGetProcAddress("glRasterPos3sv") => 0x7f0a6198
Calling glXGetProcAddress("glRasterPos3s") => 0x7f0a6628
Calling glXGetProcAddress("glRasterPos3iv") => 0x7f0a6ab8
Calling glXGetProcAddress("glRasterPos3i") => 0x7f0a6f48
Calling glXGetProcAddress("glRasterPos3fv") => 0x7f0a73d8
Calling glXGetProcAddress("glRasterPos3f") => 0x7f0a7868
Calling glXGetProcAddress("glRasterPos3dv") => 0x7f0a7cf8
Calling glXGetProcAddress("glRasterPos3d") => 0x7f0a8188
Calling glXGetProcAddress("glRasterPos2sv") => 0x7f0a8618
Calling glXGetProcAddress("glRasterPos2s") => 0x7f0a8aa8
Calling glXGetProcAddress("glRasterPos2iv") => 0x7f0a8f38
Calling glXGetProcAddress("glRasterPos2i") => 0x7f0a93c8
Calling glXGetProcAddress("glRasterPos2fv") => 0x7f0a9858
Calling glXGetProcAddress("glRasterPos2f") => 0x7f0a9ce8
Calling glXGetProcAddress("glRasterPos2dv") => 0x7f0aa178
Calling glXGetProcAddress("glRasterPos2d") => 0x7f0aa608
Calling glXGetProcAddress("glNormal3sv") => 0x7f0aaa90
Calling glXGetProcAddress("glNormal3s") => 0x7f0aaf18
Calling glXGetProcAddress("glNormal3iv") => 0x7f0ab3a0
Calling glXGetProcAddress("glNormal3i") => 0x7f0ab828
Calling glXGetProcAddress("glNormal3fv") => 0x7f0abcb0
Calling glXGetProcAddress("glNormal3f") => 0x7f0ac138
Calling glXGetProcAddress("glNormal3dv") => 0x7f0ac5c0
Calling glXGetProcAddress("glNormal3d") => 0x7f0aca48
Calling glXGetProcAddress("glNormal3bv") => 0x7f0aced0
Calling glXGetProcAddress("glNormal3b") => 0x7f0ad358
Calling glXGetProcAddress("glIndexsv") => 0x7f0ad7e0
Calling glXGetProcAddress("glIndexs") => 0x7f0adc68
Calling glXGetProcAddress("glIndexiv") => 0x7f0ae0f0
Calling glXGetProcAddress("glIndexi") => 0x7f0ae578
Calling glXGetProcAddress("glIndexfv") => 0x7f0aea00
Calling glXGetProcAddress("glIndexf") => 0x7f0aee88
Calling glXGetProcAddress("glIndexdv") => 0x7f0af310
Calling glXGetProcAddress("glIndexd") => 0x7f0af798
Calling glXGetProcAddress("glEnd") => 0x7f0afc20
Calling glXGetProcAddress("glEdgeFlagv") => 0x7f0b00a8
Calling glXGetProcAddress("glEdgeFlag") => 0x7f0b0530
Calling glXGetProcAddress("glColor4usv") => 0x7f0b09b8
Calling glXGetProcAddress("glColor4us") => 0x7f0b0e40
Calling glXGetProcAddress("glColor4uiv") => 0x7f0b12c8
Calling glXGetProcAddress("glColor4ui") => 0x7f0b1750
Calling glXGetProcAddress("glColor4ubv") => 0x7f0b1bd8
Calling glXGetProcAddress("glColor4ub") => 0x7f0b2060
Calling glXGetProcAddress("glColor4sv") => 0x7f0b24e8
Calling glXGetProcAddress("glColor4s") => 0x7f0b2970
Calling glXGetProcAddress("glColor4iv") => 0x7f0b2df8
Calling glXGetProcAddress("glColor4i") => 0x7f0b3280
Calling glXGetProcAddress("glColor4fv") => 0x7f0b3708
Calling glXGetProcAddress("glColor4f") => 0x7f0b3b90
Calling glXGetProcAddress("glColor4dv") => 0x7f0b4018
Calling glXGetProcAddress("glColor4d") => 0x7f0b44a0
Calling glXGetProcAddress("glColor4bv") => 0x7f0b4928
Calling glXGetProcAddress("glColor4b") => 0x7f0b4db0
Calling glXGetProcAddress("glColor3usv") => 0x7f0b5238
Calling glXGetProcAddress("glColor3us") => 0x7f0b56c0
Calling glXGetProcAddress("glColor3uiv") => 0x7f0b5b48
Calling glXGetProcAddress("glColor3ui") => 0x7f0b5fd0
Calling glXGetProcAddress("glColor3ubv") => 0x7f0b6458
Calling glXGetProcAddress("glColor3ub") => 0x7f0b68e0
Calling glXGetProcAddress("glColor3sv") => 0x7f0b6d68
Calling glXGetProcAddress("glColor3s") => 0x7f0b71f0
Calling glXGetProcAddress("glColor3iv") => 0x7f0b7678
Calling glXGetProcAddress("glColor3i") => 0x7f0b7b00
Calling glXGetProcAddress("glColor3fv") => 0x7f0b7f88
Calling glXGetProcAddress("glColor3f") => 0x7f0b8410
Calling glXGetProcAddress("glColor3dv") => 0x7f0b8898
Calling glXGetProcAddress("glColor3d") => 0x7f0b8d20
Calling glXGetProcAddress("glColor3bv") => 0x7f0b91a8
Calling glXGetProcAddress("glColor3b") => 0x7f0b9630
Calling glXGetProcAddress("glBitmap") => 0x7f0b9ab8
Calling glXGetProcAddress("glBegin") => 0x7f0b9f40
Calling glXGetProcAddress("glListBase") => 0x7f0ba3c8
Calling glXGetProcAddress("glGenLists") => 0x7f0ba850
Calling glXGetProcAddress("glDeleteLists") => 0x7f0bace0
Calling glXGetProcAddress("glCallLists") => 0x7f0bb168
Calling glXGetProcAddress("glCallList") => 0x7f0bb5f0
Calling glXGetProcAddress("glEndList") => 0x7f0bba78
Calling glXGetProcAddress("glNewList") => 0x7f0bbf00
Calling glXGetProcAddress("glGenFramebuffers") => 0x7f0c0558
Calling glXGetProcAddress("glGenVertexArrays") => 0x7f0e4370
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7f0e47c0
Calling glXGetProcAddress("glBindVertexArray") => 0x7f0e4c10
Calling glXGetProcAddress("glIsVertexArray") => 0x7f0e5060
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e60d4c0
Calling glXGetProcAddress("glFramebufferTexture2D") => 0x7e60e6a0
Calling glXGetProcAddress("glActiveTexture") => 0x7e60f878
Calling glXGetProcAddress("glCreateShader") => 0x7e6247a0
Calling glXGetProcAddress("glShaderSource") => 0x7df29018
Calling glXGetProcAddress("glCompileShader") => 0x7df29760
Calling glXGetProcAddress("glGetShaderiv") => 0x7de2c980
Calling glXGetProcAddress("glCreateProgram") => 0x7de27150
Calling glXGetProcAddress("glAttachShader") => 0x7de2e348
Calling glXGetProcAddress("glBindAttribLocation") => 0x7de4c530
Calling glXGetProcAddress("glLinkProgram") => 0x7de48038
Calling glXGetProcAddress("glGetProgramiv") => 0x7de52110
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7de541c8
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7de58c50
Calling glXGetProcAddress("glUseProgram") => 0x7de599f8
Calling glXGetProcAddress("glGetUniformLocation") => 0x7de5b088
Calling glXGetProcAddress("glUniform1i") => 0x7de5bde8
Calling glXGetProcAddress("glFramebufferRenderbuffer") => 0x7de62000
Calling glXGetProcAddress("glGenVertexArrays") => 0x7f0e4370
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7f0e47c0
Calling glXGetProcAddress("glBindVertexArray") => 0x7f0e4c10
Calling glXGetProcAddress("glIsVertexArray") => 0x7f0e5060
Calling glXGetProcAddress("glGenVertexArrays") => 0x7f0e4370
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7f0e47c0
Calling glXGetProcAddress("glBindVertexArray") => 0x7f0e4c10
Calling glXGetProcAddress("glIsVertexArray") => 0x7f0e5060
Calling glXGetProcAddress("glGenVertexArrays") => 0x7f0e4370
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7f0e47c0
Calling glXGetProcAddress("glBindVertexArray") => 0x7f0e4c10
Calling glXGetProcAddress("glIsVertexArray") => 0x7f0e5060
Calling glXGetProcAddress("glUniform1fv") => 0x7dc42a40
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7dc42e90
Calling glXGetProcAddress("glUniform2fv") => 0x7dca1e38
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dcb3930
Calling glXGetProcAddress("glBlendColor") => 0x7dcc79b0
Calling glXGetProcAddress("glUniform4fv") => 0x7cf01930
Error: Send error, 22 Argumento inválido
Error: Send error, 22 Argumento inválido
Error: Send error, 22 Argumento inválido
Call to dlopen("/home/pi/zoom/libicuuc.so"/0xb67a5d80, 1)
dlopen: New handle 0x1a (/home/pi/zoom/libicuuc.so), dlopened=0
Call to dlopen("/home/pi/zoom/libicui18n.so"/0xb67a5d80, 1)
dlopen: New handle 0x1b (/home/pi/zoom/libicui18n.so), dlopened=0
Call to dlsym(0x1a, u_getVersion_54) :0xb0a71c90
Call to dlsym(0x1a, u_getVersion_54) :0xb0a71c90
Call to dlsym(0x1a, u_setDataDirectory_54) :0xb0a71050
Call to dlsym(0x1a, u_isspace_54) :0xb0af1080
Call to dlsym(0x1a, u_strFoldCase_54) :0xb0ad51f0
Call to dlsym(0x1a, u_strToUTF8_54) :0xb0ada130
Call to dlsym(0x1a, u_strtok_r_54) :0xb0ad1980
Call to dlsym(0x1a, utf8_nextCharSafeBody_54) :0xb0ad0d60
Call to dlsym(0x1a, ubrk_open_54) :0xb0b1c320
Call to dlsym(0x1a, ubrk_close_54) :0xb0b1c1e0
Call to dlsym(0x1a, ubrk_setText_54) :0xb0b1c200
Call to dlsym(0x1a, ubrk_current_54) :0xb0b1c5e0
Call to dlsym(0x1a, ubrk_next_54) :0xb0b1c600
Call to dlsym(0x1a, ubrk_previous_54) :0xb0b1c620
Call to dlsym(0x1a, ubrk_first_54) :0xb0b1c640
Call to dlsym(0x1a, ubrk_isBoundary_54) :0xb0b1c6e0
Call to dlsym(0x1a, ubrk_getRuleStatus_54) :0xb0b1c710
Call to dlsym(0x1a, unorm_normalize_54) :0xb0aeac30
Call to dlsym(0x1a, unorm2_getNFKDInstance_54) :0xb0aec9d0
Call to dlsym(0x1a, unorm2_normalize_54) :0xb0ae60a0
Call to dlsym(0x1a, ucnv_fromUChars_54) :0xb0a81b50
Call to dlsym(0x1a, ucnv_toUChars_54) :0xb0a81fa0
Call to dlsym(0x1a, ucnv_openCCSID_54) :0xb0a80a40
Call to dlsym(0x1a, ucnv_close_54) :0xb0a80f00
Call to dlsym(0x1a, uiter_setUTF8_54) :0xb0af0100
Call to dlsym(0x1b, ucol_strcoll_54) :0xb0d13060
Call to dlsym(0x1b, ucol_strcollIter_54) :0xb0d12ff0
Call to dlsym(0x1b, ucol_getSortKey_54) :0xb0d12ba0
Call to dlsym(0x1b, ucol_open_54) :0xb0d142c0
Call to dlsym(0x1b, ucol_setAttribute_54) :0xb0d12e50
Call to dlsym(0x1b, ucol_getShortDefinitionString_54) :0xb0d16490
Call to dlopen("/home/pi/zoom/QtQuick/Dialogs/libdialogplugin.so"/0x75f380b0, 1)
dlopen: New handle 0x1c (/home/pi/zoom/QtQuick/Dialogs/libdialogplugin.so), dlopened=1
Call to dlsym(0x1c, qt_plugin_instance) :0x7f60e270
Call to dlopen("/home/pi/zoom/QtQuick/PrivateWidgets/libwidgetsplugin.so"/0x74b6b270, 1)
dlopen: New handle 0x1d (/home/pi/zoom/QtQuick/PrivateWidgets/libwidgetsplugin.so), dlopened=1
Call to dlsym(0x1d, qt_plugin_instance) :0x7d02bda0
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3f96ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3f9702e
Calling glXGetProcAddress("glBindBuffer") => 0x3f9703f
Calling glXGetProcAddress("glBufferData") => 0x3f97050
Calling glXGetProcAddress("glGenFramebuffers") => 0x7f0c0558
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e60d4c0
Calling glXGetProcAddress("glFramebufferTexture2D") => 0x7e60e6a0
Calling glXGetProcAddress("glCheckFramebufferStatus") => 0x6fd26f80
Calling glXGetProcAddress("glGenRenderbuffers") => 0x6fd2e938
Calling glXGetProcAddress("glBindRenderbuffer") => 0x6fd2f470
Calling glXGetProcAddress("glRenderbufferStorage") => 0x6fd306e0
Calling glXGetProcAddress("glFramebufferRenderbuffer") => 0x7de62000
Calling glXGetProcAddress("glCreateProgram") => 0x7de27150
Calling glXGetProcAddress("glBindAttribLocation") => 0x7de4c530
Calling glXGetProcAddress("glCreateShader") => 0x7e6247a0
Calling glXGetProcAddress("glShaderSource") => 0x7df29018
Calling glXGetProcAddress("glCompileShader") => 0x7df29760
Calling glXGetProcAddress("glGetShaderiv") => 0x7de2c980
Calling glXGetProcAddress("glAttachShader") => 0x7de2e348
Calling glXGetProcAddress("glLinkProgram") => 0x7de48038
Calling glXGetProcAddress("glGetProgramiv") => 0x7de52110
Calling glXGetProcAddress("glUseProgram") => 0x7de599f8
Calling glXGetProcAddress("glGetUniformLocation") => 0x7de5b088
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7de58c50
Calling glXGetProcAddress("glUniform1fv") => 0x7dc42a40
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7dc42e90
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7de541c8
Calling glXGetProcAddress("glBlendColor") => 0x7dcc79b0
Calling glXGetProcAddress("glUniform4fv") => 0x7cf01930
Calling glXGetProcAddress("glUniform2fv") => 0x7dca1e38
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dcb3930
Calling glXGetProcAddress("glUniform1i") => 0x7de5bde8
Calling glXGetProcAddress("glActiveTexture") => 0x7e60f878

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 4:41 am

TERMINAL CONSOLE. PLAYING WITH ZOOM APP VIDEO (NOT WORKING) IN BOX 86 debug mode, sorry for the extension of the file :(

Code: Select all

Calling glXGetProcAddress("glLoadMatrixd") => 0x7ef763d0
Calling glXGetProcAddress("glLoadMatrixf") => 0x7ef76860
Calling glXGetProcAddress("glLoadIdentity") => 0x7ef76cf0
Calling glXGetProcAddress("glFrustum") => 0x7ef77178
Calling glXGetProcAddress("glIsList") => 0x7ef77600
Calling glXGetProcAddress("glGetTexGeniv") => 0x7ef77a90
Calling glXGetProcAddress("glGetTexGenfv") => 0x7ef77f20
Calling glXGetProcAddress("glGetTexGendv") => 0x7ef783b0
Calling glXGetProcAddress("glGetTexEnviv") => 0x7ef78840
Calling glXGetProcAddress("glGetTexEnvfv") => 0x7ef78cd0
Calling glXGetProcAddress("glGetPolygonStipple") => 0x7ef79160
Calling glXGetProcAddress("glGetPixelMapusv") => 0x7ef795f0
Calling glXGetProcAddress("glGetPixelMapuiv") => 0x7ef79a80
Calling glXGetProcAddress("glGetPixelMapfv") => 0x7ef79f10
Calling glXGetProcAddress("glGetMaterialiv") => 0x7ef7a3a0
Calling glXGetProcAddress("glGetMaterialfv") => 0x7ef7a830
Calling glXGetProcAddress("glGetMapiv") => 0x7ef7acb8
Calling glXGetProcAddress("glGetMapfv") => 0x7ef7b140
Calling glXGetProcAddress("glGetMapdv") => 0x7ef7b5c8
Calling glXGetProcAddress("glGetLightiv") => 0x7ef7ba58
Calling glXGetProcAddress("glGetLightfv") => 0x7ef7bee8
Calling glXGetProcAddress("glGetClipPlane") => 0x7ef7c378
Calling glXGetProcAddress("glDrawPixels") => 0x7ef7c808
Calling glXGetProcAddress("glCopyPixels") => 0x7ef7cc98
Calling glXGetProcAddress("glPixelMapusv") => 0x7ef7d128
Calling glXGetProcAddress("glPixelMapuiv") => 0x7ef7d5b8
Calling glXGetProcAddress("glPixelMapfv") => 0x7ef7da48
Calling glXGetProcAddress("glPixelTransferi") => 0x7ef7ded8
Calling glXGetProcAddress("glPixelTransferf") => 0x7ef7e368
Calling glXGetProcAddress("glPixelZoom") => 0x7ef7e7f0
Calling glXGetProcAddress("glAlphaFunc") => 0x7ef7ec78
Calling glXGetProcAddress("glEvalPoint2") => 0x7ef7f108
Calling glXGetProcAddress("glEvalMesh2") => 0x7ef7f590
Calling glXGetProcAddress("glEvalPoint1") => 0x7ef7fa20
Calling glXGetProcAddress("glEvalMesh1") => 0x7ef7fea8
Calling glXGetProcAddress("glEvalCoord2fv") => 0x7ef80338
Calling glXGetProcAddress("glEvalCoord2f") => 0x7ef807c8
Calling glXGetProcAddress("glEvalCoord2dv") => 0x7ef80c58
Calling glXGetProcAddress("glEvalCoord2d") => 0x7ef810e8
Calling glXGetProcAddress("glEvalCoord1fv") => 0x7ef81578
Calling glXGetProcAddress("glEvalCoord1f") => 0x7ef81a08
Calling glXGetProcAddress("glEvalCoord1dv") => 0x7ef81e98
Calling glXGetProcAddress("glEvalCoord1d") => 0x7ef82328
Calling glXGetProcAddress("glMapGrid2f") => 0x7ef827b0
Calling glXGetProcAddress("glMapGrid2d") => 0x7ef82c38
Calling glXGetProcAddress("glMapGrid1f") => 0x7ef830c0
Calling glXGetProcAddress("glMapGrid1d") => 0x7ef83548
Calling glXGetProcAddress("glMap2f") => 0x7ef839d0
Calling glXGetProcAddress("glMap2d") => 0x7ef83e58
Calling glXGetProcAddress("glMap1f") => 0x7ef842e0
Calling glXGetProcAddress("glMap1d") => 0x7ef84768
Calling glXGetProcAddress("glPushAttrib") => 0x7ef84bf8
Calling glXGetProcAddress("glPopAttrib") => 0x7ef85080
Calling glXGetProcAddress("glAccum") => 0x7ef85508
Calling glXGetProcAddress("glIndexMask") => 0x7ef85990
Calling glXGetProcAddress("glClearIndex") => 0x7ef85e20
Calling glXGetProcAddress("glClearAccum") => 0x7ef862b0
Calling glXGetProcAddress("glPushName") => 0x7ef86738
Calling glXGetProcAddress("glPopName") => 0x7ef86bc0
Calling glXGetProcAddress("glPassThrough") => 0x7ef87050
Calling glXGetProcAddress("glLoadName") => 0x7ef874d8
Calling glXGetProcAddress("glInitNames") => 0x7ef87960
Calling glXGetProcAddress("glRenderMode") => 0x7ef87df0
Calling glXGetProcAddress("glSelectBuffer") => 0x7ef88280
Calling glXGetProcAddress("glFeedbackBuffer") => 0x7ef88710
Calling glXGetProcAddress("glTexGeniv") => 0x7ef8a4c8
Calling glXGetProcAddress("glTexGeni") => 0x7ef8a918
Calling glXGetProcAddress("glTexGenfv") => 0x7ef8ad68
Calling glXGetProcAddress("glTexGenf") => 0x7ef8b1b8
Calling glXGetProcAddress("glTexGendv") => 0x7ef8b608
Calling glXGetProcAddress("glTexGend") => 0x7ef8ba90
Calling glXGetProcAddress("glTexEnviv") => 0x7ef8bf18
Calling glXGetProcAddress("glTexEnvi") => 0x7ef8c3a0
Calling glXGetProcAddress("glTexEnvfv") => 0x7ef8c828
Calling glXGetProcAddress("glTexEnvf") => 0x7ef8ccb0
Calling glXGetProcAddress("glShadeModel") => 0x7ef8d140
Calling glXGetProcAddress("glPolygonStipple") => 0x7ef8d5d0
Calling glXGetProcAddress("glMaterialiv") => 0x7ef8da60
Calling glXGetProcAddress("glMateriali") => 0x7ef8dee8
Calling glXGetProcAddress("glMaterialfv") => 0x7ef8e378
Calling glXGetProcAddress("glMaterialf") => 0x7ef8e800
Calling glXGetProcAddress("glLineStipple") => 0x7ef8ec90
Calling glXGetProcAddress("glLightModeliv") => 0x7ef8f120
Calling glXGetProcAddress("glLightModeli") => 0x7ef8f5b0
Calling glXGetProcAddress("glLightModelfv") => 0x7ef8fa40
Calling glXGetProcAddress("glLightModelf") => 0x7ef901d8
Calling glXGetProcAddress("glLightiv") => 0x7ef90660
Calling glXGetProcAddress("glLighti") => 0x7ef90ae8
Calling glXGetProcAddress("glLightfv") => 0x7ef90f70
Calling glXGetProcAddress("glLightf") => 0x7ef913f8
Calling glXGetProcAddress("glFogiv") => 0x7ef91880
Calling glXGetProcAddress("glFogi") => 0x7ef91d08
Calling glXGetProcAddress("glFogfv") => 0x7ef92190
Calling glXGetProcAddress("glFogf") => 0x7ef92618
Calling glXGetProcAddress("glColorMaterial") => 0x7ef92aa8
Calling glXGetProcAddress("glClipPlane") => 0x7ef92f30
Calling glXGetProcAddress("glVertex4sv") => 0x7ef933b8
Calling glXGetProcAddress("glVertex4s") => 0x7ef93840
Calling glXGetProcAddress("glVertex4iv") => 0x7ef93cc8
Calling glXGetProcAddress("glVertex4i") => 0x7ef94150
Calling glXGetProcAddress("glVertex4fv") => 0x7ef945d8
Calling glXGetProcAddress("glVertex4f") => 0x7ef94a60
Calling glXGetProcAddress("glVertex4dv") => 0x7ef94ee8
Calling glXGetProcAddress("glVertex4d") => 0x7ef95370
Calling glXGetProcAddress("glVertex3sv") => 0x7ef957f8
Calling glXGetProcAddress("glVertex3s") => 0x7ef95c80
Calling glXGetProcAddress("glVertex3iv") => 0x7ef96108
Calling glXGetProcAddress("glVertex3i") => 0x7ef96590
Calling glXGetProcAddress("glVertex3fv") => 0x7ef96a18
Calling glXGetProcAddress("glVertex3f") => 0x7ef96ea0
Calling glXGetProcAddress("glVertex3dv") => 0x7ef97328
Calling glXGetProcAddress("glVertex3d") => 0x7ef977b0
Calling glXGetProcAddress("glVertex2sv") => 0x7ef97c38
Calling glXGetProcAddress("glVertex2s") => 0x7ef980c0
Calling glXGetProcAddress("glVertex2iv") => 0x7ef98548
Calling glXGetProcAddress("glVertex2i") => 0x7ef989d0
Calling glXGetProcAddress("glVertex2fv") => 0x7ef98e58
Calling glXGetProcAddress("glVertex2f") => 0x7ef992e0
Calling glXGetProcAddress("glVertex2dv") => 0x7ef99768
Calling glXGetProcAddress("glVertex2d") => 0x7ef99bf0
Calling glXGetProcAddress("glTexCoord4sv") => 0x7ef9a080
Calling glXGetProcAddress("glTexCoord4s") => 0x7ef9a510
Calling glXGetProcAddress("glTexCoord4iv") => 0x7ef9a9a0
Calling glXGetProcAddress("glTexCoord4i") => 0x7ef9ae30
Calling glXGetProcAddress("glTexCoord4fv") => 0x7ef9b2c0
Calling glXGetProcAddress("glTexCoord4f") => 0x7ef9b750
Calling glXGetProcAddress("glTexCoord4dv") => 0x7ef9bbe0
Calling glXGetProcAddress("glTexCoord4d") => 0x7ef9c070
Calling glXGetProcAddress("glTexCoord3sv") => 0x7ef9c500
Calling glXGetProcAddress("glTexCoord3s") => 0x7ef9c990
Calling glXGetProcAddress("glTexCoord3iv") => 0x7ef9ce20
Calling glXGetProcAddress("glTexCoord3i") => 0x7ef9d2b0
Calling glXGetProcAddress("glTexCoord3fv") => 0x7ef9d740
Calling glXGetProcAddress("glTexCoord3f") => 0x7ef9dbd0
Calling glXGetProcAddress("glTexCoord3dv") => 0x7ef9e060
Calling glXGetProcAddress("glTexCoord3d") => 0x7ef9e4f0
Calling glXGetProcAddress("glTexCoord2sv") => 0x7ef9e980
Calling glXGetProcAddress("glTexCoord2s") => 0x7ef9ee10
Calling glXGetProcAddress("glTexCoord2iv") => 0x7ef9f2a0
Calling glXGetProcAddress("glTexCoord2i") => 0x7ef9f730
Calling glXGetProcAddress("glTexCoord2fv") => 0x7ef9fbc0
Calling glXGetProcAddress("glTexCoord2f") => 0x7efa0050
Calling glXGetProcAddress("glTexCoord2dv") => 0x7efa04e0
Calling glXGetProcAddress("glTexCoord2d") => 0x7efa0970
Calling glXGetProcAddress("glTexCoord1sv") => 0x7efa0e00
Calling glXGetProcAddress("glTexCoord1s") => 0x7efa1290
Calling glXGetProcAddress("glTexCoord1iv") => 0x7efa1720
Calling glXGetProcAddress("glTexCoord1i") => 0x7efa1bb0
Calling glXGetProcAddress("glTexCoord1fv") => 0x7efa2040
Calling glXGetProcAddress("glTexCoord1f") => 0x7efa24d0
Calling glXGetProcAddress("glTexCoord1dv") => 0x7efa2960
Calling glXGetProcAddress("glTexCoord1d") => 0x7efa2df0
Calling glXGetProcAddress("glRectsv") => 0x7efa3278
Calling glXGetProcAddress("glRects") => 0x7efa3700
Calling glXGetProcAddress("glRectiv") => 0x7efa3b88
Calling glXGetProcAddress("glRecti") => 0x7efa4010
Calling glXGetProcAddress("glRectfv") => 0x7efa4498
Calling glXGetProcAddress("glRectf") => 0x7efa4920
Calling glXGetProcAddress("glRectdv") => 0x7efa4da8
Calling glXGetProcAddress("glRectd") => 0x7efa5230
Calling glXGetProcAddress("glRasterPos4sv") => 0x7efa56c0
Calling glXGetProcAddress("glRasterPos4s") => 0x7efa5b50
Calling glXGetProcAddress("glRasterPos4iv") => 0x7efa5fe0
Calling glXGetProcAddress("glRasterPos4i") => 0x7efa6470
Calling glXGetProcAddress("glRasterPos4fv") => 0x7efa6900
Calling glXGetProcAddress("glRasterPos4f") => 0x7efa6d90
Calling glXGetProcAddress("glRasterPos4dv") => 0x7efa7220
Calling glXGetProcAddress("glRasterPos4d") => 0x7efa76b0
Calling glXGetProcAddress("glRasterPos3sv") => 0x7efa7b40
Calling glXGetProcAddress("glRasterPos3s") => 0x7efa7fd0
Calling glXGetProcAddress("glRasterPos3iv") => 0x7efa8460
Calling glXGetProcAddress("glRasterPos3i") => 0x7efa88f0
Calling glXGetProcAddress("glRasterPos3fv") => 0x7efa8d80
Calling glXGetProcAddress("glRasterPos3f") => 0x7efa9210
Calling glXGetProcAddress("glRasterPos3dv") => 0x7efa96a0
Calling glXGetProcAddress("glRasterPos3d") => 0x7efa9b30
Calling glXGetProcAddress("glRasterPos2sv") => 0x7efa9fc0
Calling glXGetProcAddress("glRasterPos2s") => 0x7efaa450
Calling glXGetProcAddress("glRasterPos2iv") => 0x7efaa8e0
Calling glXGetProcAddress("glRasterPos2i") => 0x7efaad70
Calling glXGetProcAddress("glRasterPos2fv") => 0x7efab200
Calling glXGetProcAddress("glRasterPos2f") => 0x7efab690
Calling glXGetProcAddress("glRasterPos2dv") => 0x7efabb20
Calling glXGetProcAddress("glRasterPos2d") => 0x7efabfb0
Calling glXGetProcAddress("glNormal3sv") => 0x7efac438
Calling glXGetProcAddress("glNormal3s") => 0x7efac8c0
Calling glXGetProcAddress("glNormal3iv") => 0x7efacd48
Calling glXGetProcAddress("glNormal3i") => 0x7efad1d0
Calling glXGetProcAddress("glNormal3fv") => 0x7efad658
Calling glXGetProcAddress("glNormal3f") => 0x7efadae0
Calling glXGetProcAddress("glNormal3dv") => 0x7efadf68
Calling glXGetProcAddress("glNormal3d") => 0x7efae3f0
Calling glXGetProcAddress("glNormal3bv") => 0x7efae878
Calling glXGetProcAddress("glNormal3b") => 0x7efaed00
Calling glXGetProcAddress("glIndexsv") => 0x7efaf188
Calling glXGetProcAddress("glIndexs") => 0x7efaf610
Calling glXGetProcAddress("glIndexiv") => 0x7efafa98
Calling glXGetProcAddress("glIndexi") => 0x7efaff20
Calling glXGetProcAddress("glIndexfv") => 0x7efb03a8
Calling glXGetProcAddress("glIndexf") => 0x7efb0830
Calling glXGetProcAddress("glIndexdv") => 0x7efb0cb8
Calling glXGetProcAddress("glIndexd") => 0x7efb1140
Calling glXGetProcAddress("glEnd") => 0x7efb15c8
Calling glXGetProcAddress("glEdgeFlagv") => 0x7efb1a50
Calling glXGetProcAddress("glEdgeFlag") => 0x7efb1ed8
Calling glXGetProcAddress("glColor4usv") => 0x7efb2360
Calling glXGetProcAddress("glColor4us") => 0x7efb27e8
Calling glXGetProcAddress("glColor4uiv") => 0x7efb2c70
Calling glXGetProcAddress("glColor4ui") => 0x7efb30f8
Calling glXGetProcAddress("glColor4ubv") => 0x7efb3580
Calling glXGetProcAddress("glColor4ub") => 0x7efb3a08
Calling glXGetProcAddress("glColor4sv") => 0x7efb3e90
Calling glXGetProcAddress("glColor4s") => 0x7efb4318
Calling glXGetProcAddress("glColor4iv") => 0x7efb47a0
Calling glXGetProcAddress("glColor4i") => 0x7efb4c28
Calling glXGetProcAddress("glColor4fv") => 0x7efb50b0
Calling glXGetProcAddress("glColor4f") => 0x7efb5538
Calling glXGetProcAddress("glColor4dv") => 0x7efb59c0
Calling glXGetProcAddress("glColor4d") => 0x7efb5e48
Calling glXGetProcAddress("glColor4bv") => 0x7efb62d0
Calling glXGetProcAddress("glColor4b") => 0x7efb6758
Calling glXGetProcAddress("glColor3usv") => 0x7efb6be0
Calling glXGetProcAddress("glColor3us") => 0x7efb7068
Calling glXGetProcAddress("glColor3uiv") => 0x7efb74f0
Calling glXGetProcAddress("glColor3ui") => 0x7efb7978
Calling glXGetProcAddress("glColor3ubv") => 0x7efb7e00
Calling glXGetProcAddress("glColor3ub") => 0x7efb8288
Calling glXGetProcAddress("glColor3sv") => 0x7efb8710
Calling glXGetProcAddress("glColor3s") => 0x7efb8b98
Calling glXGetProcAddress("glColor3iv") => 0x7efb9020
Calling glXGetProcAddress("glColor3i") => 0x7efb94a8
Calling glXGetProcAddress("glColor3fv") => 0x7efb9930
Calling glXGetProcAddress("glColor3f") => 0x7efb9db8
Calling glXGetProcAddress("glColor3dv") => 0x7efba240
Calling glXGetProcAddress("glColor3d") => 0x7efba6c8
Calling glXGetProcAddress("glColor3bv") => 0x7efbab50
Calling glXGetProcAddress("glColor3b") => 0x7efbafd8
Calling glXGetProcAddress("glBitmap") => 0x7efbb460
Calling glXGetProcAddress("glBegin") => 0x7efbb8e8
Calling glXGetProcAddress("glListBase") => 0x7efbbd70
Calling glXGetProcAddress("glGenLists") => 0x7efbc1f8
Calling glXGetProcAddress("glDeleteLists") => 0x7efbc688
Calling glXGetProcAddress("glCallLists") => 0x7efbcb10
Calling glXGetProcAddress("glCallList") => 0x7efbcf98
Calling glXGetProcAddress("glEndList") => 0x7efbd420
Calling glXGetProcAddress("glNewList") => 0x7efbd8a8
Calling glXGetProcAddress("glGenFramebuffers") => 0x7efc24c0
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glFramebufferTexture2D") => 0x7e912da0
Calling glXGetProcAddress("glActiveTexture") => 0x7e91c4c8
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glUniform1i") => 0x7dd5c240
Calling glXGetProcAddress("glFramebufferRenderbuffer") => 0x7dd619d0
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Error: Send error, 22 Argumento inválido
Error: Send error, 22 Argumento inválido
Error: Send error, 22 Argumento inválido
Call to dlopen("/home/pi/zoom/libicuuc.so"/0xb67a7d80, 1)
dlopen: New handle 0x1a (/home/pi/zoom/libicuuc.so), dlopened=0
Call to dlopen("/home/pi/zoom/libicui18n.so"/0xb67a7d80, 1)
dlopen: New handle 0x1b (/home/pi/zoom/libicui18n.so), dlopened=0
Call to dlsym(0x1a, u_getVersion_54) :0xb0a73c90
Call to dlsym(0x1a, u_getVersion_54) :0xb0a73c90
Call to dlsym(0x1a, u_setDataDirectory_54) :0xb0a73050
Call to dlsym(0x1a, u_isspace_54) :0xb0af3080
Call to dlsym(0x1a, u_strFoldCase_54) :0xb0ad71f0
Call to dlsym(0x1a, u_strToUTF8_54) :0xb0adc130
Call to dlsym(0x1a, u_strtok_r_54) :0xb0ad3980
Call to dlsym(0x1a, utf8_nextCharSafeBody_54) :0xb0ad2d60
Call to dlsym(0x1a, ubrk_open_54) :0xb0b1e320
Call to dlsym(0x1a, ubrk_close_54) :0xb0b1e1e0
Call to dlsym(0x1a, ubrk_setText_54) :0xb0b1e200
Call to dlsym(0x1a, ubrk_current_54) :0xb0b1e5e0
Call to dlsym(0x1a, ubrk_next_54) :0xb0b1e600
Call to dlsym(0x1a, ubrk_previous_54) :0xb0b1e620
Call to dlsym(0x1a, ubrk_first_54) :0xb0b1e640
Call to dlsym(0x1a, ubrk_isBoundary_54) :0xb0b1e6e0
Call to dlsym(0x1a, ubrk_getRuleStatus_54) :0xb0b1e710
Call to dlsym(0x1a, unorm_normalize_54) :0xb0aecc30
Call to dlsym(0x1a, unorm2_getNFKDInstance_54) :0xb0aee9d0
Call to dlsym(0x1a, unorm2_normalize_54) :0xb0ae80a0
Call to dlsym(0x1a, ucnv_fromUChars_54) :0xb0a83b50
Call to dlsym(0x1a, ucnv_toUChars_54) :0xb0a83fa0
Call to dlsym(0x1a, ucnv_openCCSID_54) :0xb0a82a40
Call to dlsym(0x1a, ucnv_close_54) :0xb0a82f00
Call to dlsym(0x1a, uiter_setUTF8_54) :0xb0af2100
Call to dlsym(0x1b, ucol_strcoll_54) :0xb0d15060
Call to dlsym(0x1b, ucol_strcollIter_54) :0xb0d14ff0
Call to dlsym(0x1b, ucol_getSortKey_54) :0xb0d14ba0
Call to dlsym(0x1b, ucol_open_54) :0xb0d162c0
Call to dlsym(0x1b, ucol_setAttribute_54) :0xb0d14e50
Call to dlsym(0x1b, ucol_getShortDefinitionString_54) :0xb0d18490
Call to dlopen("/home/pi/zoom/QtQuick/Dialogs/libdialogplugin.so"/0x754284d8, 1)
dlopen: New handle 0x1c (/home/pi/zoom/QtQuick/Dialogs/libdialogplugin.so), dlopened=1
Call to dlsym(0x1c, qt_plugin_instance) :0x80b10270
Call to dlopen("/home/pi/zoom/QtQuick/PrivateWidgets/libwidgetsplugin.so"/0x7546ef30, 1)
dlopen: New handle 0x1d (/home/pi/zoom/QtQuick/PrivateWidgets/libwidgetsplugin.so), dlopened=1
Call to dlsym(0x1d, qt_plugin_instance) :0x85213da0
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glGenFramebuffers") => 0x7efc24c0
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glFramebufferTexture2D") => 0x7e912da0
Calling glXGetProcAddress("glCheckFramebufferStatus") => 0x6eef7ee8
Calling glXGetProcAddress("glGenRenderbuffers") => 0x6eb0f8a0
Calling glXGetProcAddress("glBindRenderbuffer") => 0x6eb10810
Calling glXGetProcAddress("glRenderbufferStorage") => 0x6eb10ff0
Calling glXGetProcAddress("glFramebufferRenderbuffer") => 0x7dd619d0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glUniform1i") => 0x7dd5c240
Calling glXGetProcAddress("glActiveTexture") => 0x7e91c4c8
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glViewport") => 0x3c41061
Calling glXGetProcAddress("glDepthRange") => 0x3c41072
Calling glXGetProcAddress("glIsEnabled") => 0x3c41083
Calling glXGetProcAddress("glGetTexLevelParameteriv") => 0x3c41094
Calling glXGetProcAddress("glGetTexLevelParameterfv") => 0x3c410a5
Calling glXGetProcAddress("glGetTexParameteriv") => 0x3c410b6
Calling glXGetProcAddress("glGetTexParameterfv") => 0x3c410c7
Calling glXGetProcAddress("glGetTexImage") => 0x3c410d8
Calling glXGetProcAddress("glGetString") => 0x3c410e9
Calling glXGetProcAddress("glGetIntegerv") => 0x3c410fa
Calling glXGetProcAddress("glGetFloatv") => 0x3c4110b
Calling glXGetProcAddress("glGetError") => 0x3c4111c
Calling glXGetProcAddress("glGetDoublev") => 0x3c4112d
Calling glXGetProcAddress("glGetBooleanv") => 0x3c4113e
Calling glXGetProcAddress("glReadPixels") => 0x3c4114f
Calling glXGetProcAddress("glReadBuffer") => 0x3c41160
Calling glXGetProcAddress("glPixelStorei") => 0x3c41171
Calling glXGetProcAddress("glPixelStoref") => 0x3c41182
Calling glXGetProcAddress("glDepthFunc") => 0x3c41193
Calling glXGetProcAddress("glStencilOp") => 0x3c411a4
Calling glXGetProcAddress("glStencilFunc") => 0x3c411b5
Calling glXGetProcAddress("glLogicOp") => 0x3c411c6
Calling glXGetProcAddress("glBlendFunc") => 0x3c411d7
Calling glXGetProcAddress("glFlush") => 0x3c411e8
Calling glXGetProcAddress("glFinish") => 0x3c411f9
Calling glXGetProcAddress("glEnable") => 0x3c4120a
Calling glXGetProcAddress("glDisable") => 0x3c4121b
Calling glXGetProcAddress("glDepthMask") => 0x3c4122c
Calling glXGetProcAddress("glColorMask") => 0x3c4123d
Calling glXGetProcAddress("glStencilMask") => 0x3c4124e
Calling glXGetProcAddress("glClearDepth") => 0x3c4125f
Calling glXGetProcAddress("glClearStencil") => 0x3c41270
Calling glXGetProcAddress("glClearColor") => 0x3c41281
Calling glXGetProcAddress("glClear") => 0x3c41292
Calling glXGetProcAddress("glDrawBuffer") => 0x3c412a3
Calling glXGetProcAddress("glTexImage2D") => 0x3c412b4
Calling glXGetProcAddress("glTexImage1D") => 0x3c412c5
Calling glXGetProcAddress("glTexParameteriv") => 0x3c412d6
Calling glXGetProcAddress("glTexParameteri") => 0x3c412e7
Calling glXGetProcAddress("glTexParameterfv") => 0x3c412f8
Calling glXGetProcAddress("glTexParameterf") => 0x3c41309
Calling glXGetProcAddress("glScissor") => 0x3c4131a
Calling glXGetProcAddress("glPolygonMode") => 0x3c4132b
Calling glXGetProcAddress("glPointSize") => 0x3c4133c
Calling glXGetProcAddress("glLineWidth") => 0x3c4134d
Calling glXGetProcAddress("glHint") => 0x3c4135e
Calling glXGetProcAddress("glFrontFace") => 0x3c4136f
Calling glXGetProcAddress("glCullFace") => 0x3c41380
Calling glXGetProcAddress("glTranslatef") => 0x3c41391
Calling glXGetProcAddress("glTranslated") => 0x3c413a2
Calling glXGetProcAddress("glScalef") => 0x3c413b3
Calling glXGetProcAddress("glScaled") => 0x3c413c4
Calling glXGetProcAddress("glRotatef") => 0x3c413d5
Calling glXGetProcAddress("glRotated") => 0x3c413e6
Calling glXGetProcAddress("glPushMatrix") => 0x3c413f7
Calling glXGetProcAddress("glPopMatrix") => 0x7ef74d08
Calling glXGetProcAddress("glOrtho") => 0x7ef75190
Calling glXGetProcAddress("glMultMatrixd") => 0x7ef75620
Calling glXGetProcAddress("glMultMatrixf") => 0x7ef75ab0
Calling glXGetProcAddress("glMatrixMode") => 0x7ef75f40
Calling glXGetProcAddress("glLoadMatrixd") => 0x7ef763d0
Calling glXGetProcAddress("glLoadMatrixf") => 0x7ef76860
Calling glXGetProcAddress("glLoadIdentity") => 0x7ef76cf0
Calling glXGetProcAddress("glFrustum") => 0x7ef77178
Calling glXGetProcAddress("glIsList") => 0x7ef77600
Calling glXGetProcAddress("glGetTexGeniv") => 0x7ef77a90
Calling glXGetProcAddress("glGetTexGenfv") => 0x7ef77f20
Calling glXGetProcAddress("glGetTexGendv") => 0x7ef783b0
Calling glXGetProcAddress("glGetTexEnviv") => 0x7ef78840
Calling glXGetProcAddress("glGetTexEnvfv") => 0x7ef78cd0
Calling glXGetProcAddress("glGetPolygonStipple") => 0x7ef79160
Calling glXGetProcAddress("glGetPixelMapusv") => 0x7ef795f0
Calling glXGetProcAddress("glGetPixelMapuiv") => 0x7ef79a80
Calling glXGetProcAddress("glGetPixelMapfv") => 0x7ef79f10
Calling glXGetProcAddress("glGetMaterialiv") => 0x7ef7a3a0
Calling glXGetProcAddress("glGetMaterialfv") => 0x7ef7a830
Calling glXGetProcAddress("glGetMapiv") => 0x7ef7acb8
Calling glXGetProcAddress("glGetMapfv") => 0x7ef7b140
Calling glXGetProcAddress("glGetMapdv") => 0x7ef7b5c8
Calling glXGetProcAddress("glGetLightiv") => 0x7ef7ba58
Calling glXGetProcAddress("glGetLightfv") => 0x7ef7bee8
Calling glXGetProcAddress("glGetClipPlane") => 0x7ef7c378
Calling glXGetProcAddress("glDrawPixels") => 0x7ef7c808
Calling glXGetProcAddress("glCopyPixels") => 0x7ef7cc98
Calling glXGetProcAddress("glPixelMapusv") => 0x7ef7d128
Calling glXGetProcAddress("glPixelMapuiv") => 0x7ef7d5b8
Calling glXGetProcAddress("glPixelMapfv") => 0x7ef7da48
Calling glXGetProcAddress("glPixelTransferi") => 0x7ef7ded8
Calling glXGetProcAddress("glPixelTransferf") => 0x7ef7e368
Calling glXGetProcAddress("glPixelZoom") => 0x7ef7e7f0
Calling glXGetProcAddress("glAlphaFunc") => 0x7ef7ec78
Calling glXGetProcAddress("glEvalPoint2") => 0x7ef7f108

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 4:44 am

Another capture of therminal console with zoom app video not working with rpi camera v2 (box86 debug mode).
Finally closing zoom session. Hope it helps...

Code: Select all

Calling glXGetProcAddress("glEvalMesh2") => 0x7ef7f590
Calling glXGetProcAddress("glEvalPoint1") => 0x7ef7fa20
Calling glXGetProcAddress("glEvalMesh1") => 0x7ef7fea8
Calling glXGetProcAddress("glEvalCoord2fv") => 0x7ef80338
Calling glXGetProcAddress("glEvalCoord2f") => 0x7ef807c8
Calling glXGetProcAddress("glEvalCoord2dv") => 0x7ef80c58
Calling glXGetProcAddress("glEvalCoord2d") => 0x7ef810e8
Calling glXGetProcAddress("glEvalCoord1fv") => 0x7ef81578
Calling glXGetProcAddress("glEvalCoord1f") => 0x7ef81a08
Calling glXGetProcAddress("glEvalCoord1dv") => 0x7ef81e98
Calling glXGetProcAddress("glEvalCoord1d") => 0x7ef82328
Calling glXGetProcAddress("glMapGrid2f") => 0x7ef827b0
Calling glXGetProcAddress("glMapGrid2d") => 0x7ef82c38
Calling glXGetProcAddress("glMapGrid1f") => 0x7ef830c0
Calling glXGetProcAddress("glMapGrid1d") => 0x7ef83548
Calling glXGetProcAddress("glMap2f") => 0x7ef839d0
Calling glXGetProcAddress("glMap2d") => 0x7ef83e58
Calling glXGetProcAddress("glMap1f") => 0x7ef842e0
Calling glXGetProcAddress("glMap1d") => 0x7ef84768
Calling glXGetProcAddress("glPushAttrib") => 0x7ef84bf8
Calling glXGetProcAddress("glPopAttrib") => 0x7ef85080
Calling glXGetProcAddress("glAccum") => 0x7ef85508
Calling glXGetProcAddress("glIndexMask") => 0x7ef85990
Calling glXGetProcAddress("glClearIndex") => 0x7ef85e20
Calling glXGetProcAddress("glClearAccum") => 0x7ef862b0
Calling glXGetProcAddress("glPushName") => 0x7ef86738
Calling glXGetProcAddress("glPopName") => 0x7ef86bc0
Calling glXGetProcAddress("glPassThrough") => 0x7ef87050
Calling glXGetProcAddress("glLoadName") => 0x7ef874d8
Calling glXGetProcAddress("glInitNames") => 0x7ef87960
Calling glXGetProcAddress("glRenderMode") => 0x7ef87df0
Calling glXGetProcAddress("glSelectBuffer") => 0x7ef88280
Calling glXGetProcAddress("glFeedbackBuffer") => 0x7ef88710
Calling glXGetProcAddress("glTexGeniv") => 0x7ef8a4c8
Calling glXGetProcAddress("glTexGeni") => 0x7ef8a918
Calling glXGetProcAddress("glTexGenfv") => 0x7ef8ad68
Calling glXGetProcAddress("glTexGenf") => 0x7ef8b1b8
Calling glXGetProcAddress("glTexGendv") => 0x7ef8b608
Calling glXGetProcAddress("glTexGend") => 0x7ef8ba90
Calling glXGetProcAddress("glTexEnviv") => 0x7ef8bf18
Calling glXGetProcAddress("glTexEnvi") => 0x7ef8c3a0
Calling glXGetProcAddress("glTexEnvfv") => 0x7ef8c828
Calling glXGetProcAddress("glTexEnvf") => 0x7ef8ccb0
Calling glXGetProcAddress("glShadeModel") => 0x7ef8d140
Calling glXGetProcAddress("glPolygonStipple") => 0x7ef8d5d0
Calling glXGetProcAddress("glMaterialiv") => 0x7ef8da60
Calling glXGetProcAddress("glMateriali") => 0x7ef8dee8
Calling glXGetProcAddress("glMaterialfv") => 0x7ef8e378
Calling glXGetProcAddress("glMaterialf") => 0x7ef8e800
Calling glXGetProcAddress("glLineStipple") => 0x7ef8ec90
Calling glXGetProcAddress("glLightModeliv") => 0x7ef8f120
Calling glXGetProcAddress("glLightModeli") => 0x7ef8f5b0
Calling glXGetProcAddress("glLightModelfv") => 0x7ef8fa40
Calling glXGetProcAddress("glLightModelf") => 0x7ef901d8
Calling glXGetProcAddress("glLightiv") => 0x7ef90660
Calling glXGetProcAddress("glLighti") => 0x7ef90ae8
Calling glXGetProcAddress("glLightfv") => 0x7ef90f70
Calling glXGetProcAddress("glLightf") => 0x7ef913f8
Calling glXGetProcAddress("glFogiv") => 0x7ef91880
Calling glXGetProcAddress("glFogi") => 0x7ef91d08
Calling glXGetProcAddress("glFogfv") => 0x7ef92190
Calling glXGetProcAddress("glFogf") => 0x7ef92618
Calling glXGetProcAddress("glColorMaterial") => 0x7ef92aa8
Calling glXGetProcAddress("glClipPlane") => 0x7ef92f30
Calling glXGetProcAddress("glVertex4sv") => 0x7ef933b8
Calling glXGetProcAddress("glVertex4s") => 0x7ef93840
Calling glXGetProcAddress("glVertex4iv") => 0x7ef93cc8
Calling glXGetProcAddress("glVertex4i") => 0x7ef94150
Calling glXGetProcAddress("glVertex4fv") => 0x7ef945d8
Calling glXGetProcAddress("glVertex4f") => 0x7ef94a60
Calling glXGetProcAddress("glVertex4dv") => 0x7ef94ee8
Calling glXGetProcAddress("glVertex4d") => 0x7ef95370
Calling glXGetProcAddress("glVertex3sv") => 0x7ef957f8
Calling glXGetProcAddress("glVertex3s") => 0x7ef95c80
Calling glXGetProcAddress("glVertex3iv") => 0x7ef96108
Calling glXGetProcAddress("glVertex3i") => 0x7ef96590
Calling glXGetProcAddress("glVertex3fv") => 0x7ef96a18
Calling glXGetProcAddress("glVertex3f") => 0x7ef96ea0
Calling glXGetProcAddress("glVertex3dv") => 0x7ef97328
Calling glXGetProcAddress("glVertex3d") => 0x7ef977b0
Calling glXGetProcAddress("glVertex2sv") => 0x7ef97c38
Calling glXGetProcAddress("glVertex2s") => 0x7ef980c0
Calling glXGetProcAddress("glVertex2iv") => 0x7ef98548
Calling glXGetProcAddress("glVertex2i") => 0x7ef989d0
Calling glXGetProcAddress("glVertex2fv") => 0x7ef98e58
Calling glXGetProcAddress("glVertex2f") => 0x7ef992e0
Calling glXGetProcAddress("glVertex2dv") => 0x7ef99768
Calling glXGetProcAddress("glVertex2d") => 0x7ef99bf0
Calling glXGetProcAddress("glTexCoord4sv") => 0x7ef9a080
Calling glXGetProcAddress("glTexCoord4s") => 0x7ef9a510
Calling glXGetProcAddress("glTexCoord4iv") => 0x7ef9a9a0
Calling glXGetProcAddress("glTexCoord4i") => 0x7ef9ae30
Calling glXGetProcAddress("glTexCoord4fv") => 0x7ef9b2c0
Calling glXGetProcAddress("glTexCoord4f") => 0x7ef9b750
Calling glXGetProcAddress("glTexCoord4dv") => 0x7ef9bbe0
Calling glXGetProcAddress("glTexCoord4d") => 0x7ef9c070
Calling glXGetProcAddress("glTexCoord3sv") => 0x7ef9c500
Calling glXGetProcAddress("glTexCoord3s") => 0x7ef9c990
Calling glXGetProcAddress("glTexCoord3iv") => 0x7ef9ce20
Calling glXGetProcAddress("glTexCoord3i") => 0x7ef9d2b0
Calling glXGetProcAddress("glTexCoord3fv") => 0x7ef9d740
Calling glXGetProcAddress("glTexCoord3f") => 0x7ef9dbd0
Calling glXGetProcAddress("glTexCoord3dv") => 0x7ef9e060
Calling glXGetProcAddress("glTexCoord3d") => 0x7ef9e4f0
Calling glXGetProcAddress("glTexCoord2sv") => 0x7ef9e980
Calling glXGetProcAddress("glTexCoord2s") => 0x7ef9ee10
Calling glXGetProcAddress("glTexCoord2iv") => 0x7ef9f2a0
Calling glXGetProcAddress("glTexCoord2i") => 0x7ef9f730
Calling glXGetProcAddress("glTexCoord2fv") => 0x7ef9fbc0
Calling glXGetProcAddress("glTexCoord2f") => 0x7efa0050
Calling glXGetProcAddress("glTexCoord2dv") => 0x7efa04e0
Calling glXGetProcAddress("glTexCoord2d") => 0x7efa0970
Calling glXGetProcAddress("glTexCoord1sv") => 0x7efa0e00
Calling glXGetProcAddress("glTexCoord1s") => 0x7efa1290
Calling glXGetProcAddress("glTexCoord1iv") => 0x7efa1720
Calling glXGetProcAddress("glTexCoord1i") => 0x7efa1bb0
Calling glXGetProcAddress("glTexCoord1fv") => 0x7efa2040
Calling glXGetProcAddress("glTexCoord1f") => 0x7efa24d0
Calling glXGetProcAddress("glTexCoord1dv") => 0x7efa2960
Calling glXGetProcAddress("glTexCoord1d") => 0x7efa2df0
Calling glXGetProcAddress("glRectsv") => 0x7efa3278
Calling glXGetProcAddress("glRects") => 0x7efa3700
Calling glXGetProcAddress("glRectiv") => 0x7efa3b88
Calling glXGetProcAddress("glRecti") => 0x7efa4010
Calling glXGetProcAddress("glRectfv") => 0x7efa4498
Calling glXGetProcAddress("glRectf") => 0x7efa4920
Calling glXGetProcAddress("glRectdv") => 0x7efa4da8
Calling glXGetProcAddress("glRectd") => 0x7efa5230
Calling glXGetProcAddress("glRasterPos4sv") => 0x7efa56c0
Calling glXGetProcAddress("glRasterPos4s") => 0x7efa5b50
Calling glXGetProcAddress("glRasterPos4iv") => 0x7efa5fe0
Calling glXGetProcAddress("glRasterPos4i") => 0x7efa6470
Calling glXGetProcAddress("glRasterPos4fv") => 0x7efa6900
Calling glXGetProcAddress("glRasterPos4f") => 0x7efa6d90
Calling glXGetProcAddress("glRasterPos4dv") => 0x7efa7220
Calling glXGetProcAddress("glRasterPos4d") => 0x7efa76b0
Calling glXGetProcAddress("glRasterPos3sv") => 0x7efa7b40
Calling glXGetProcAddress("glRasterPos3s") => 0x7efa7fd0
Calling glXGetProcAddress("glRasterPos3iv") => 0x7efa8460
Calling glXGetProcAddress("glRasterPos3i") => 0x7efa88f0
Calling glXGetProcAddress("glRasterPos3fv") => 0x7efa8d80
Calling glXGetProcAddress("glRasterPos3f") => 0x7efa9210
Calling glXGetProcAddress("glRasterPos3dv") => 0x7efa96a0
Calling glXGetProcAddress("glRasterPos3d") => 0x7efa9b30
Calling glXGetProcAddress("glRasterPos2sv") => 0x7efa9fc0
Calling glXGetProcAddress("glRasterPos2s") => 0x7efaa450
Calling glXGetProcAddress("glRasterPos2iv") => 0x7efaa8e0
Calling glXGetProcAddress("glRasterPos2i") => 0x7efaad70
Calling glXGetProcAddress("glRasterPos2fv") => 0x7efab200
Calling glXGetProcAddress("glRasterPos2f") => 0x7efab690
Calling glXGetProcAddress("glRasterPos2dv") => 0x7efabb20
Calling glXGetProcAddress("glRasterPos2d") => 0x7efabfb0
Calling glXGetProcAddress("glNormal3sv") => 0x7efac438
Calling glXGetProcAddress("glNormal3s") => 0x7efac8c0
Calling glXGetProcAddress("glNormal3iv") => 0x7efacd48
Calling glXGetProcAddress("glNormal3i") => 0x7efad1d0
Calling glXGetProcAddress("glNormal3fv") => 0x7efad658
Calling glXGetProcAddress("glNormal3f") => 0x7efadae0
Calling glXGetProcAddress("glNormal3dv") => 0x7efadf68
Calling glXGetProcAddress("glNormal3d") => 0x7efae3f0
Calling glXGetProcAddress("glNormal3bv") => 0x7efae878
Calling glXGetProcAddress("glNormal3b") => 0x7efaed00
Calling glXGetProcAddress("glIndexsv") => 0x7efaf188
Calling glXGetProcAddress("glIndexs") => 0x7efaf610
Calling glXGetProcAddress("glIndexiv") => 0x7efafa98
Calling glXGetProcAddress("glIndexi") => 0x7efaff20
Calling glXGetProcAddress("glIndexfv") => 0x7efb03a8
Calling glXGetProcAddress("glIndexf") => 0x7efb0830
Calling glXGetProcAddress("glIndexdv") => 0x7efb0cb8
Calling glXGetProcAddress("glIndexd") => 0x7efb1140
Calling glXGetProcAddress("glEnd") => 0x7efb15c8
Calling glXGetProcAddress("glEdgeFlagv") => 0x7efb1a50
Calling glXGetProcAddress("glEdgeFlag") => 0x7efb1ed8
Calling glXGetProcAddress("glColor4usv") => 0x7efb2360
Calling glXGetProcAddress("glColor4us") => 0x7efb27e8
Calling glXGetProcAddress("glColor4uiv") => 0x7efb2c70
Calling glXGetProcAddress("glColor4ui") => 0x7efb30f8
Calling glXGetProcAddress("glColor4ubv") => 0x7efb3580
Calling glXGetProcAddress("glColor4ub") => 0x7efb3a08
Calling glXGetProcAddress("glColor4sv") => 0x7efb3e90
Calling glXGetProcAddress("glColor4s") => 0x7efb4318
Calling glXGetProcAddress("glColor4iv") => 0x7efb47a0
Calling glXGetProcAddress("glColor4i") => 0x7efb4c28
Calling glXGetProcAddress("glColor4fv") => 0x7efb50b0
Calling glXGetProcAddress("glColor4f") => 0x7efb5538
Calling glXGetProcAddress("glColor4dv") => 0x7efb59c0
Calling glXGetProcAddress("glColor4d") => 0x7efb5e48
Calling glXGetProcAddress("glColor4bv") => 0x7efb62d0
Calling glXGetProcAddress("glColor4b") => 0x7efb6758
Calling glXGetProcAddress("glColor3usv") => 0x7efb6be0
Calling glXGetProcAddress("glColor3us") => 0x7efb7068
Calling glXGetProcAddress("glColor3uiv") => 0x7efb74f0
Calling glXGetProcAddress("glColor3ui") => 0x7efb7978
Calling glXGetProcAddress("glColor3ubv") => 0x7efb7e00
Calling glXGetProcAddress("glColor3ub") => 0x7efb8288
Calling glXGetProcAddress("glColor3sv") => 0x7efb8710
Calling glXGetProcAddress("glColor3s") => 0x7efb8b98
Calling glXGetProcAddress("glColor3iv") => 0x7efb9020
Calling glXGetProcAddress("glColor3i") => 0x7efb94a8
Calling glXGetProcAddress("glColor3fv") => 0x7efb9930
Calling glXGetProcAddress("glColor3f") => 0x7efb9db8
Calling glXGetProcAddress("glColor3dv") => 0x7efba240
Calling glXGetProcAddress("glColor3d") => 0x7efba6c8
Calling glXGetProcAddress("glColor3bv") => 0x7efbab50
Calling glXGetProcAddress("glColor3b") => 0x7efbafd8
Calling glXGetProcAddress("glBitmap") => 0x7efbb460
Calling glXGetProcAddress("glBegin") => 0x7efbb8e8
Calling glXGetProcAddress("glListBase") => 0x7efbbd70
Calling glXGetProcAddress("glGenLists") => 0x7efbc1f8
Calling glXGetProcAddress("glDeleteLists") => 0x7efbc688
Calling glXGetProcAddress("glCallLists") => 0x7efbcb10
Calling glXGetProcAddress("glCallList") => 0x7efbcf98
Calling glXGetProcAddress("glEndList") => 0x7efbd420
Calling glXGetProcAddress("glNewList") => 0x7efbd8a8
Calling glXGetProcAddress("glGenFramebuffers") => 0x7efc24c0
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glFramebufferTexture2D") => 0x7e912da0
Calling glXGetProcAddress("glActiveTexture") => 0x7e91c4c8
Calling glXGetProcAddress("glUniform1i") => 0x7dd5c240
Calling glXGetProcAddress("glFramebufferRenderbuffer") => 0x7dd619d0
Calling glXGetProcAddress("glGetAttribLocation") => 0xf6f1d08
Calling glXGetProcAddress("glCheckFramebufferStatus") => 0x6eef7ee8
Calling glXGetProcAddress("glUniform1f") => 0xf8228b8
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glDetachShader") => 0xf7ce018
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
Calling glXGetProcAddress("glDeleteFramebuffers") => 0xf6e8258
qrc:/qml/ZoomMenu.qml:64:5: QML ZoomListView: Binding loop detected for property "height"
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
qrc:/qml/ZoomMenu.qml:64:5: QML ZoomListView: Binding loop detected for property "height"
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glGetAttribLocation") => 0xf6f1d08
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glGenFramebuffers") => 0x7efc24c0
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glFramebufferTexture2D") => 0x7e912da0
Calling glXGetProcAddress("glCheckFramebufferStatus") => 0x6eef7ee8
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glUniform1f") => 0xf8228b8
Calling glXGetProcAddress("glUniform1i") => 0x7dd5c240
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glActiveTexture") => 0x7e91c4c8
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDetachShader") => 0xf7ce018
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
Calling glXGetProcAddress("glDeleteFramebuffers") => 0xf6e8258
CSBConfUI::OnConfStatusChanged  UI_CMD_SHARE_READYCalling glXGetProcAddress("glFramebufferRenderbuffer") => 0x7dd619d0
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glValidateProgram") => 0x5f11d660
Calling glXGetProcAddress("glUniform4f") => 0x5f11dea0
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glGetAttribLocation") => 0xf6f1d08
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glGenFramebuffers") => 0x7efc24c0
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glFramebufferTexture2D") => 0x7e912da0
Calling glXGetProcAddress("glCheckFramebufferStatus") => 0x6eef7ee8
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glUniform1f") => 0xf8228b8
Calling glXGetProcAddress("glUniform1i") => 0x7dd5c240
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glGenVertexArrays") => 0x7efe6548
Calling glXGetProcAddress("glDeleteVertexArrays") => 0x7efe6998
Calling glXGetProcAddress("glBindVertexArray") => 0x7efe6de8
Calling glXGetProcAddress("glIsVertexArray") => 0x7efe7238
Calling glXGetProcAddress("glActiveTexture") => 0x7e91c4c8
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glXCreateContextAttribsARB") => 0x3c40ffb
Calling glXGetProcAddress("glGenBuffers") => 0x3c4102e
Calling glXGetProcAddress("glBindBuffer") => 0x3c4103f
Calling glXGetProcAddress("glBufferData") => 0x3c41050
Calling glXGetProcAddress("glBindFramebuffer") => 0x7e90dbc0
Calling glXGetProcAddress("glCreateProgram") => 0x7dd276e0
Calling glXGetProcAddress("glBindAttribLocation") => 0x7dd4c638
Calling glXGetProcAddress("glCreateShader") => 0x7e924d38
Calling glXGetProcAddress("glShaderSource") => 0x7de296a8
Calling glXGetProcAddress("glCompileShader") => 0x7de29e58
Calling glXGetProcAddress("glGetShaderiv") => 0x7dd30490
Calling glXGetProcAddress("glAttachShader") => 0x7dd2e838
Calling glXGetProcAddress("glLinkProgram") => 0x7dd29e48
Calling glXGetProcAddress("glGetProgramiv") => 0x7dd53c80
Calling glXGetProcAddress("glUseProgram") => 0x7dd59e50
Calling glXGetProcAddress("glGetUniformLocation") => 0x7dd5b4e0
Calling glXGetProcAddress("glEnableVertexAttribArray") => 0x7dd58fd0
Calling glXGetProcAddress("glUniformMatrix4fv") => 0x7db57e50
Calling glXGetProcAddress("glVertexAttribPointer") => 0x7dd54508
Calling glXGetProcAddress("glBlendColor") => 0x7dbef330
Calling glXGetProcAddress("glUniform1fv") => 0x7db57a00
Calling glXGetProcAddress("glUniform4fv") => 0x7dbc9bc0
Calling glXGetProcAddress("glUniform2fv") => 0x7dbc4b58
Calling glXGetProcAddress("glDisableVertexAttribArray") => 0x7dbcc358
Calling glXGetProcAddress("glDetachShader") => 0xf7ce018
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
Calling glXGetProcAddress("glDeleteFramebuffers") => 0xf6e8258
Calling glXGetProcAddress("glValidateProgram") => 0x5f11d660
Calling glXGetProcAddress("glUniform4f") => 0x5f11dea0
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
QCoreApplication::postEvent: Unexpected null receiver
QCoreApplication::postEvent: Unexpected null receiver
QCoreApplication::postEvent: Unexpected null receiver
QCoreApplication::postEvent: Unexpected null receiver
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
Calling glXGetProcAddress("glDeleteShader") => 0xf7cf3e0
Calling glXGetProcAddress("glDeleteProgram") => 0xf6de880
Calling glXGetProcAddress("glDeleteBuffers") => 0x694242b0
WorkerBase::loop() normal exit, fds[0].revents & POLLIN = true
WorkerBase::loop() normal exit, fds[0].revents & POLLIN = true
WorkerBase::loop() normal exit, fds[0].revents & POLLIN = true
WorkerBase::loop() normal exit, fds[0].revents & POLLIN = true

ptitSeb
Posts: 276
Joined: Tue May 19, 2015 2:49 pm

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 8:52 am

There is absolutly no reason why installing Zoom would remove GIMP. That need to be fixex on PI-Apps side!

For the sound, I noticed you are missing "pactl", wich comes with PulseAudio. Try to install it (I don't remember the package, but just typing the name on a console should give an hint)

For the Camera, I don't know, and I don't have one to test, so it will be complicated. All that log (you should use a service like pastebin for such a long list) looks clean. One thing you can do is launch zoom with ZoomLauncher instead of zoom, maybe that helps.

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 12:54 pm

Xolarwind wrote:
Mon Oct 12, 2020 3:40 am
Botspot wrote:I hope that's old news, because that should have been fixed
Yes, but only after installing c-make manually first, the zoom pi app and box86 compiles and installs ok.
OK, after you gave your feedback about that, I was able to fix the script so it would install cmake first before compiling box86. So a new user will not have this problem like you did.
Xolarwind wrote:
Mon Oct 12, 2020 3:40 am
Botspot wrote:sudo apt-get install libxcb-xtest*
After installing that, did zoom work?
Yes, it did.
Good. I've also made those changes to the install script.
Xolarwind wrote:
Mon Oct 12, 2020 3:40 am
But audio (headphones) from usb card (logitech h370 usb headset) did not work properly, i had no audio and i can not select usb logitech h370 usb audio (it showed the option, but did not give access to select it), so bcm 2835 audio by default was the only fixed / selected option.
Yeah I've been fighting this for a couple days now. Turns out Zoom needs pulseaudio to run. The latest Zoom app ensures pulseaudio is installed, and launches pulseaudio right before Zoom starts. It also stops pulseaudio running when Zoom finishes. Since you're still having this problem, it sounds like your Zoom App version is outdated. Please launch Pi-Apps again and wait a few seconds for the 'updates available' window to pop up.
Xolarwind wrote:
Mon Oct 12, 2020 3:40 am
Video from isp connected rpi camera module V2 did not work (selection appears as bcm2835 video). bcm2835 v4l2 driver is enabled in /etc/modules and the camera is enabled in raspi-config.
The camera works properly on zoom web and other applications.
Sorry, no idea. I have asked around, though.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

User avatar
Botspot
Posts: 1880
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 1:45 pm

ptitSeb wrote:
Mon Oct 12, 2020 8:52 am
There is absolutly no reason why installing Zoom would remove GIMP. That need to be fixex on PI-Apps side!
Completely agree. I'm baffled why it's happening though, because there is clearly no mention of 'gimp' anywhere in any of the scripts.
Maybe it was an dpkg dependency problem like I theorized before.
But so far I've not been able to reproduce it, so who knows. :(
Xolarwind, please install GIMP and Mypaint again and see what happens.
Easily install anything on your Pi using Pi-Apps. Over 2 million users.
Over 200 apps including image editors, IDEs, games, web browsers, appearance themes, and more to upgrade your Raspberry Pi desktop.
More info: https://github.com/Botspot/pi-apps

Xolarwind
Posts: 16
Joined: Fri Oct 09, 2020 7:20 am

Re: Running Zoom on RPi: made easy with Pi-Apps - the new RPi app store

Mon Oct 12, 2020 4:27 pm

I have installed GIMP again without problems...it is running now.. Zoom launches with the new updated app. I will try to install missing package recommended by ptitSeb to fix pulseaudio problem and enabling usb headset sound and mic in zoom app running box86. I will comment about the results later.
It has to work...i believe....if audio works for the headset on zoom web (chromium). Raspberry pi propietary Camera v2 module only works in zoom web (chromium)... with the reported laggy behaviour (or freezing after some minutes needing to end your connection and reconnect to the meeting to restore it)... when more than 2 people uses zoom as in a typical zoom classroom (almost everyone commented that usb web cameras have the same problem with zoom web and raspberry pi, but not with google meet, because zoom have not compiled a linux (raspbian) app for ARMv8 architecture)
So, because rpi camera module v2 does not works on zoom app desktop or launcher over box86 on raspbian, do you would recommend to change the rpi camera to a usb external hd (720p min) webcam, in order to enable working (limited but working) with zoom for teaching and virtual schooling ? It could be a possibility.... so i have to change the rpi v2 cameras of all of my students to usb cameras, mine also, and the rpi cameras of my two kids (10 and 15 yo)... everyone of them loves using rpi as their computers. We have been using google meet without problems over RPI4 with rpi camera...but now a majority of local schools change to zoom platform. The problem is that camera v2 over rpi4 is the cheapest, and simpliest way to have a good quality camera on rpi, with excelent integration, and perfect capabilities for school; buying a compatible usb camera for videoconferencing is really expensive here, more than the RPi4 and the tv monitor alltogether. And that would be a heavy impact in family budget for virtual schooling in our country during the covid19 pandemia, if not bringing imposible to use rpi4 for zoom. Thank you very much for your help, Botsop and ptitSeb, your work has been very helpfull. I hope you can solve the rpi camera issue. I will try to help as much as i can (with my obvious limitations understanding software coding... i am only a rpi enthusiast) . I think Rpi4b use for teaching has a huge potential for primary and middle schoolers and the pandemia problem brings an opportunity about that.

Return to “General discussion”