Mesa 3D graphics library
Go to file
Eric Anholt fd17de2123 mesa: Throw an error when starting conditional render on an active query.
From the NV_conditional_render spec:

    BeginQuery sets the active query object name for the query type given by
    <target> to <id>.  If BeginQuery is called with an <id> of zero, if the
    active query object name for <target> is non-zero, if <id> is the active
    query object name for any query type, or if <id> is the active query
    object for condtional rendering (Section 2.X), the error INVALID OPERATION
    is generated.

Fixes piglit nv_conditional_render-begin-while-active.

Reviewed-by: Brian Paul <brianp@vmware.com>
2011-09-19 11:51:53 -07:00
bin mesa: Remove support for BeOS 2011-08-26 23:31:23 -07:00
configs Remove unused APP_LIB_DEPS variable 2011-09-19 07:39:19 -06:00
docs Drop documentation references for deleted backends 2011-09-06 16:23:50 -04:00
doxygen doxygen: Add glsl to the Makefile and .gitignore. 2011-01-19 23:49:54 -08:00
include dri2: add __DRI_IMAGE_FORMAT_ABGR8888 to __DRI_IMAGE 2011-09-09 12:06:16 +08:00
scons scons: Remove dead MSVC SDK/DDK/WINCE tools. 2011-09-14 16:45:44 +01:00
src mesa: Throw an error when starting conditional render on an active query. 2011-09-19 11:51:53 -07:00
.emacs-dirvars
.gitattributes
.gitignore Squashed commit of the following: 2011-07-14 17:35:05 +01:00
Android.common.mk android: build libGLES_mesa 2011-08-21 02:01:48 +08:00
Android.mk i915: build i915_dri.so for Android 2011-09-01 10:53:30 +08:00
Makefile mesa: Remove support for BeOS 2011-08-26 23:31:23 -07:00
SConstruct scons: Disable saving options automatically. 2011-07-01 19:04:57 +01:00
acinclude.m4
autogen.sh
common.py swrast: initial multi-threaded span rendering 2011-08-11 08:33:59 -06:00
configure.ac Remove unused APP_LIB_DEPS variable 2011-09-19 07:39:19 -06:00

docs/README.WIN32

File: docs/README.WIN32

Last updated: 23 April 2011


Quick Start
----- -----

Windows drivers are build with SCons.  Makefiles or Visual Studio projects are
no longer shipped or supported.

Run

  scons osmesa mesagdi

to build classic mesa Windows GDI drivers; or

  scons libgl-gdi

to build gallium based GDI driver.

This will work both with MSVS or Mingw.


Windows Drivers
------- -------

At this time, only the gallium GDI driver is known to work.

Source code also exists in the tree for other drivers in
src/mesa/drivers/windows, but the status of this code is unknown.


General
-------

After building, you can copy the above DLL files to a place in your
PATH such as $SystemRoot/SYSTEM32.  If you don't like putting things
in a system directory, place them in the same directory as the
executable(s).  Be careful about accidentially overwriting files of
the same name in the SYSTEM32 directory.

The DLL files are built so that the external entry points use the
stdcall calling convention.

Static LIB files are not built.  The LIB files that are built with are
the linker import files associated with the DLL files.

The si-glu sources are used to build the GLU libs.  This was done
mainly to get the better tessellator code.

If you have a Windows-related build problem or question, please post
to the mesa-dev or mesa-users list.