va_buffer.c \
va_config.c \
va_picture.c \
- va_surface.c
+ va_surface.c \
+ va_display.c
#include <va/va_backend.h>
#include "va_private.h"
-VAStatus vlVaConfigProfiles( VADriverContextP ctx,
+VAStatus vlVaQueryConfigProfiles( VADriverContextP ctx,
VAProfile *profile_list,
int *num_profiles)
{
}
-VAStatus vlVaConfigEntrypoints( VADriverContextP ctx,
+VAStatus vlVaQueryConfigEntrypoints( VADriverContextP ctx,
VAProfile profile,
VAEntrypoint *entypoint_list,
int *num_entrypoints)
return VA_STATUS_ERROR_UNIMPLEMENTED;
}
+
{
if (!ctx)
return VA_STATUS_ERROR_INVALID_CONTEXT;
-
return VA_STATUS_ERROR_UNIMPLEMENTED;
}
return VA_STATUS_ERROR_UNIMPLEMENTED;
}
-VAStatus vlDestroyImage( VADriverContextP ctx,
+VAStatus vlVaDestroyImage( VADriverContextP ctx,
VAImageID image)
{
if (!ctx)
return VA_STATUS_ERROR_UNIMPLEMENTED;
}
-VAStatus vlSetImagePalette( VADriverContextP ctx,
+VAStatus vlVaSetImagePalette( VADriverContextP ctx,
VAImageID image,
unsigned char *palette)
{
--- /dev/null
+TOP = ../../../..
+include $(TOP)/configs/current
+
+LIBBASENAME = r600_drv_video
+
+DRIVER_DEFINES = -DGALLIUM_SOFTPIPE
+DRIVER_INCLUDES =
+
+PIPE_DRIVERS = \
+ $(TOP)/src/gallium/drivers/r600/libr600.a \
+ $(TOP)/src/gallium/winsys/g3dvl/dri/libvldri.a \
+ $(TOP)/src/gallium/winsys/r600/drm/libr600winsys.a \
+ $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
+ $(TOP)/src/gallium/drivers/trace/libtrace.a \
+ $(TOP)/src/gallium/auxiliary/libgallium.a
+
+C_SOURCES = \
+ target.c \
+ $(COMMON_GALLIUM_SOURCES) \
+ $(DRIVER_SOURCES)
+
+DRIVER_LIBS = $(shell pkg-config libdrm_radeon --libs) -lXfixes
+
+include ../Makefile.va
+
+symlinks:
--- /dev/null
+#include "state_tracker/drm_driver.h"
+#include "target-helpers/inline_debug_helper.h"
+#include "r600/drm/r600_drm_public.h"
+#include "r600/r600_public.h"
+
+static struct pipe_screen *create_screen(int fd)
+{
+ struct radeon *radeon;
+ struct pipe_screen *screen;
+
+ radeon = r600_drm_winsys_create(fd);
+ if (!radeon)
+ return NULL;
+
+ screen = r600_screen_create(radeon);
+ if (!screen)
+ return NULL;
+
+ screen = debug_screen_wrap(screen);
+
+ return screen;
+}
+
+DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen)