Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
mesa
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1,896
Issues
1,896
List
Boards
Labels
Milestones
Merge Requests
324
Merge Requests
324
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mesa
mesa
Commits
f43c679c
Commit
f43c679c
authored
Apr 10, 2010
by
Marek Olšák
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
r300g: do not use tiling for scanout buffers
parent
5a43dbac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/gallium/drivers/r300/r300_texture.c
src/gallium/drivers/r300/r300_texture.c
+2
-1
No files found.
src/gallium/drivers/r300/r300_texture.c
View file @
f43c679c
...
...
@@ -801,7 +801,8 @@ static struct pipe_texture* r300_texture_create(struct pipe_screen* screen,
tex
->
tex
.
screen
=
screen
;
r300_setup_flags
(
tex
);
if
(
!
(
base
->
tex_usage
&
R300_TEXTURE_USAGE_TRANSFER
))
{
if
(
!
(
base
->
tex_usage
&
R300_TEXTURE_USAGE_TRANSFER
)
&&
!
(
tex
->
tex
.
tex_usage
&
PIPE_TEXTURE_USAGE_SCANOUT
))
{
r300_setup_tiling
(
screen
,
tex
);
}
r300_setup_miptree
(
rscreen
,
tex
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment