Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
igt-gpu-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
55
Issues
55
List
Boards
Labels
Service Desk
Milestones
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
drm
igt-gpu-tools
Commits
9e4ba530
Commit
9e4ba530
authored
Jul 09, 2010
by
Eric Anholt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
intel_decode: Fix decode for gen6's moved VERTEX_ELEMENTS valid bit.
parent
aa4772c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tools/intel_decode.c
tools/intel_decode.c
+2
-2
No files found.
tools/intel_decode.c
View file @
9e4ba530
...
...
@@ -1748,8 +1748,8 @@ decode_3d_965(uint32_t *data, int count, uint32_t hw_offset, uint32_t devid, int
for
(
i
=
1
;
i
<
len
;)
{
instr_out
(
data
,
hw_offset
,
i
,
"buffer %d: %svalid, type 0x%04x, "
"src offset 0x%04x bytes
\n
"
,
data
[
i
]
>>
27
,
data
[
i
]
&
(
1
<<
26
)
?
""
:
"in"
,
data
[
i
]
>>
(
IS_GEN6
(
devid
)
?
26
:
27
)
,
data
[
i
]
&
(
1
<<
(
IS_GEN6
(
devid
)
?
25
:
26
)
)
?
""
:
"in"
,
(
data
[
i
]
>>
16
)
&
0x1ff
,
data
[
i
]
&
0x07ff
);
i
++
;
...
...
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