comparison README.QNX @ 279:04351f59b051

Mike Gorchak added some QNX tweaks, including OpenGL support
author Sam Lantinga <slouken@libsdl.org>
date Thu, 14 Feb 2002 02:15:15 +0000
parents c6abdda2f666
children 68a8a8237c09
comparison
equal deleted inserted replaced
278:dcd9f7b50a1c 279:04351f59b051
1 README by Mike Gorchak <mike@malva.com.ua> 1 README by Mike Gorchak <mike@malva.com.ua>
2 2
3 Experimentally added OpenGL support in window mode (in fullscreen 3 Experimentally added OpenGL support in window mode (in fullscreen
4 mode not yet). If you have QNX RtP v6.1.0 w/ or w/o Patch A you need 4 mode not yet). If you have QNX RtP v6.1.0 w/ or w/o Patch A you need
5 to download new Photon3D runtime from http://developers.qnx.com. The 5 to download new Photon3D runtime from http://developers.qnx.com. The
6 versions of OS before 6.1.0 is not supported. OpenGL support is very 6 versions of OS before 6.1.0 is not supported.
7 raw. It is often fail. 7
8 Problems:
9 1. OpenGL support is very raw. It is often fail. Update function has
10 not been written yet. Fullscreen mode has not been written yet.
11 2. Photon has some errors in detecting how much bits per pixel has
12 videomode, creating images with different color depth.
13 3. No shared libraries yet. We need manually set flags as
14 --disable-shared.
8 15
9 Some building issues: 16 Some building issues:
10 17
11 Run configure script without x11 support, e.g.: 18 Run configure script without x11 support, e.g.:
12 19
13 ./configure --prefix=/usr/local --disable-video-x11 20 a) for OpenGL support:
21 ./configure --prefix=/usr/local \
22 --disable-video-x11 \
23 --disable-shared
24
25 a) without OpenGL support:
26 ./configure --prefix=/usr/local \
27 --disable-video-x11 \
28 --disable-shared \
29 --disable-video-opengl
14 30
15 In test directory also run ./configure script without x11 support, e.g.: 31 In test directory also run ./configure script without x11 support, e.g.:
16 32
17 ./configure --with-sdl-prefix=/usr/local \ 33 ./configure --with-sdl-prefix=/usr/local \
18 --with-sdl-exec-prefix=/usr/local \ 34 --with-sdl-exec-prefix=/usr/local \
19 --prefix=/usr/local --without-x 35 --prefix=/usr/local --without-x
36