gallium: Fix copy typo

This commit is contained in:
Jakob Bornecrantz
2010-04-20 23:59:38 +01:00
parent b88ba89397
commit 71901594ed
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ static struct drm_api i915_drm_api =
.name = "i915",
.driver_name = "i915",
.create_screen = i915_drm_create_screen,
.destroy = NULL;
.destroy = NULL,
};
struct drm_api *
+1 -1
View File
@@ -96,7 +96,7 @@ struct drm_api i965_libdrm_api =
.name = "i965",
.driver_name = "i915",
.create_screen = i965_libdrm_create_screen,
.destroy = NULL;
.destroy = NULL,
};
struct drm_api *
@@ -150,7 +150,7 @@ static struct drm_api nouveau_drm_api_hooks = {
.name = "nouveau",
.driver_name = "nouveau",
.create_screen = nouveau_drm_create_screen,
.destroy = NULL;
.destroy = NULL,
};
struct drm_api *
+1 -1
View File
@@ -185,7 +185,7 @@ static struct drm_api radeon_drm_api_hooks = {
.name = "radeon",
.driver_name = "radeon",
.create_screen = radeon_create_screen,
.destroy = NULL;
.destroy = NULL,
};
struct drm_api* drm_api_create()
+1 -1
View File
@@ -365,7 +365,7 @@ static struct drm_api vmw_drm_api_hooks = {
.name = "vmwgfx",
.driver_name = "vmwgfx",
.create_screen = vmw_drm_create_screen,
.destroy = NULL;
.destroy = NULL,
};
struct drm_api* drm_api_create()