Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
F
FreeBSD ports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
4
Snippets
Groups
Projects
Show more breadcrumbs
FreeBSD
FreeBSD ports
Commits
5c430b85
Commit
5c430b85
authored
2 years ago
by
Jan Beich
Browse files
Options
Downloads
Patches
Plain Diff
x11-drivers/xf86-video-intel: switch to crocus DRI after
23e4dce3
PR: 269291 Tested by: nogueira@tuta.io Approved by: manu
parent
c3106175
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
x11-drivers/xf86-video-intel/Makefile
+1
-1
1 addition, 1 deletion
x11-drivers/xf86-video-intel/Makefile
x11-drivers/xf86-video-intel/files/patch-prefer-iris
+9
-8
9 additions, 8 deletions
x11-drivers/xf86-video-intel/files/patch-prefer-iris
with
10 additions
and
9 deletions
x11-drivers/xf86-video-intel/Makefile
+
1
−
1
View file @
5c430b85
PORTNAME
=
xf86-video-intel
DISTVERSION
=
2.99.917-916
DISTVERSIONSUFFIX
=
-g
${
GL_COMMIT:C/
(
.
{
12
}
)
.
*
/
\1
/
}
PORTREVISION
=
2
PORTREVISION
=
3
PORTEPOCH
=
1
CATEGORIES
=
x11-drivers
...
...
This diff is collapsed.
Click to expand it.
x11-drivers/xf86-video-intel/files/patch-prefer-iris
+
9
−
8
View file @
5c430b85
Chase https://gitlab.freedesktop.org/mesa/mesa/-/commit/adaa3583f507
Chase https://gitlab.freedesktop.org/mesa/mesa/-/commit/cdde031ac2c8
--- src/sna/sna_dri2.c.orig 202
0-11-16 15:23:28
UTC
--- src/sna/sna_dri2.c.orig 202
1-01-15 20:59:05
UTC
+++ src/sna/sna_dri2.c
@@ -3707,8 +3707,10 @@
static const char *dri_driver_name(struct sna *sna)
return has_i830_dri() ? "i830" : "i915";
else if (sna->kgem.gen < 040)
return "i915";
- else
+ else if (sna->kgem.gen < 0100)
return "i965";
+ else
+ return "crocus";
else
- return "i965";
+ return "iris";
}
return s;
--- src/uxa/intel_dri.c.orig 202
0-11-16 15:23:28
UTC
--- src/uxa/intel_dri.c.orig 202
1-01-15 20:59:05
UTC
+++ src/uxa/intel_dri.c
@@ -1540,8 +1540,10 @@
static const char *dri_driver_name(intel_screen_privat
return has_i830_dri() ? "i830" : "i915";
else if (INTEL_INFO(intel)->gen < 040)
return "i915";
- else
+ else if (INTEL_INFO(intel)->gen < 0100)
return "i965";
+ else
+ return "crocus";
else
- return "i965";
+ return "iris";
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment