On 24 aug 2009, at 13.12, RALOVICH, Kristóf wrote: > On Mon, Aug 24, 2009 at 07:35, Chia-I Wu<[email protected]> wrote: >> On Sun, Aug 23, 2009 at 03:26:35PM +0200, RALOVICH, Kristóf wrote: >>> would someone please suggest me how to build a working EGL setup >>> (with >>> ./configure preferably)? >>> Is there any way to build a working EGL that does not rely on X, >>> but KMS? >> On my machine with i915 and KMS, I can >> >> $ ./configure --disable-{glut,glu,glw} --with-dri-drivers="" >> $ make >> $ sudo make install >> >> It uses the default config values, and it will compile and install >> libGL.so, libEGL.so, and EGL_i915.so. The libGL.so is a standard >> linux >> libGL with GLX, but we will only need its entry points. You may as >> well >> delete it. Then you can run >> >> $ cd progs/egl >> $ EGL_DRIVER=/usr/local/lib/dri/EGL_i915.so ./eglgears >> >> -- >> Regards, >> olv >> > > Thanks for the pointer. > > So far I was trying to run progs/egl/demo1, but that fails in an ugly > way for me. eglgears starts, but bails with the following: > > debug_get_option: GALLIUM_TRACE = (null) > debug_get_bool_option: GALLIUM_RBUG = FALSE > get chip id failed: -1 > param: 4, val: 0 > get fences failed: -1 > param: 6, val: 0 > debug_get_bool_option: INTEL_SOFTPIPE = FALSE > debug_get_bool_option: INTEL_DUMP_CMD = FALSE > i915_create_screen: unknown pci id 0x2a42, cannot create screen > eglgears: eglInitialize failed > > > It seems EGL_i915.so doesnt like my GM4500. Is there a way to do > software rendering (like swrast or softpipe)?
export INTEL_SOFTPIPE=true should get you running on i965 class hardware. Cheers Jakob. ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Mesa3d-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mesa3d-dev
