mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-16 04:20:34 +01:00
Temporarily disable intel pixel ops on i915 for GEM
Instead of attempting to fix these for GEM, just disable until GEM is working.
This commit is contained in:
parent
81ec0545c9
commit
367b1e35dc
3 changed files with 8 additions and 5 deletions
|
|
@ -6,6 +6,11 @@ LIBNAME = i915_dri.so
|
|||
|
||||
MINIGLX_SOURCES = server/intel_dri.c
|
||||
|
||||
PIXEL_SOURCES = \
|
||||
intel_pixel.c \
|
||||
intel_pixel_read.c \
|
||||
intel_pixel_draw.c
|
||||
|
||||
DRIVER_SOURCES = \
|
||||
i830_context.c \
|
||||
i830_metaops.c \
|
||||
|
|
@ -27,10 +32,7 @@ DRIVER_SOURCES = \
|
|||
intel_tex_validate.c \
|
||||
intel_tex_format.c \
|
||||
intel_tex.c \
|
||||
intel_pixel.c \
|
||||
intel_pixel_copy.c \
|
||||
intel_pixel_read.c \
|
||||
intel_pixel_draw.c \
|
||||
intel_buffers.c \
|
||||
intel_blit.c \
|
||||
i915_tex.c \
|
||||
|
|
@ -68,6 +70,7 @@ DRIVER_DEFINES = -I../intel -I../intel/server -DI915 \
|
|||
include ../Makefile.template
|
||||
|
||||
intel_decode.o: ../intel/intel_decode.c
|
||||
|
||||
intel_tex_layout.o: ../intel/intel_tex_layout.c
|
||||
|
||||
symlinks:
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ static void
|
|||
i830InitDriverFunctions(struct dd_function_table *functions)
|
||||
{
|
||||
intelInitDriverFunctions(functions);
|
||||
intelInitPixelFuncs(functions);
|
||||
// intelInitPixelFuncs(functions);
|
||||
i830InitStateFuncs(functions);
|
||||
i830InitTextureFuncs(functions);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ static void
|
|||
i915InitDriverFunctions(struct dd_function_table *functions)
|
||||
{
|
||||
intelInitDriverFunctions(functions);
|
||||
intelInitPixelFuncs(functions);
|
||||
// intelInitPixelFuncs(functions);
|
||||
i915InitStateFunctions(functions);
|
||||
i915InitTextureFuncs(functions);
|
||||
i915InitFragProgFuncs(functions);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue