Age | Commit message (Collapse) | Author |
|
|
|
|
|
Fixes some VTX protection errors introduced by e89af209261.
|
|
[olv: formatted for 80-column wrapping]
|
|
API_DEFINES is the defines for libmesagallium.a. Append it to
egl_CPPFLAGS only when st_GL.so, which uses libmesagallium.a, is built.
|
|
https://bugs.freedesktop.org/show_bug.cgi?id=28294
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Previously nouveau_state_emit() was being called directly, sometimes
that doesn't work because it doesn't update the derived GL context.
|
|
|
|
|
|
|
|
Without this, update_textures may not pick up the new pipe_resource.
It is actually update_textures that should check
stObj->sampler_view->texture != stObj->pt, but let's follow st_TexImage
and others for now.
|
|
Fixes fd.o bug 31128.
|
|
It's also equivalent to Elements(...) which is already used elsewhere.
|
|
Fixes failure on restoring state when the program was active but
deleted, and the name no longer exists.
Bug #31194
|
|
|
|
|
|
Fix
$ make CC="ccache gcc"
|
|
Conflicts:
src/mapi/glapi/glapi_sparc.S
src/mapi/glapi/glapi_x86.S
src/mapi/glapi/glapidispatch.h
src/mapi/glapi/glapioffsets.h
src/mapi/glapi/glprocs.h
|
|
|
|
|
|
|
|
Some integer formats work with some packed datatypes.
|
|
|
|
|
|
|
|
Remove unnecessary GLAPIENTRY keywords, update comments, re-indent.
|
|
|
|
|
|
This removes a bunch of similar error checking code in all the vertex
pointer functions and puts nearly all the error checking in update_array().
|
|
|
|
The integers still get converted to floats. That'll have to change someday.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fixes 6 piglit tests about stencil operations.
|