Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
23b401c3
There was an error fetching the commit references. Please try again later.
Commit
23b401c3
authored
10 years ago
by
Subv
Browse files
Options
Downloads
Patches
Plain Diff
GPU/DisplayTransfer: Made the scaling bits a single 2bit value
Rephrased some comments.
parent
ae0dfcae
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
src/core/hw/gpu.cpp
+10
-4
10 additions, 4 deletions
src/core/hw/gpu.cpp
src/core/hw/gpu.h
+7
-2
7 additions, 2 deletions
src/core/hw/gpu.h
with
17 additions
and
6 deletions
src/core/hw/gpu.cpp
+
10
−
4
View file @
23b401c3
...
...
@@ -116,9 +116,15 @@ inline void Write(u32 addr, const T data) {
u8
*
src_pointer
=
Memory
::
GetPointer
(
Memory
::
PhysicalToVirtualAddress
(
config
.
GetPhysicalInputAddress
()));
u8
*
dst_pointer
=
Memory
::
GetPointer
(
Memory
::
PhysicalToVirtualAddress
(
config
.
GetPhysicalOutputAddress
()));
unsigned
horizontal_scale
=
(
config
.
scale_x
!=
0
||
config
.
scale_xy
!=
0
)
?
2
:
1
;
unsigned
vertical_scale
=
(
config
.
scale_xy
!=
0
)
?
2
:
1
;
if
(
config
.
scaling
>
config
.
ScaleXY
)
{
LOG_CRITICAL
(
HW_GPU
,
"Unimplemented display transfer scaling mode %u"
,
config
.
scaling
.
Value
());
UNIMPLEMENTED
();
break
;
}
unsigned
horizontal_scale
=
(
config
.
scaling
!=
config
.
NoScale
)
?
2
:
1
;
unsigned
vertical_scale
=
(
config
.
scaling
==
config
.
ScaleXY
)
?
2
:
1
;
u32
output_width
=
config
.
output_width
/
horizontal_scale
;
u32
output_height
=
config
.
output_height
/
vertical_scale
;
...
...
@@ -138,7 +144,7 @@ inline void Write(u32 addr, const T data) {
break
;
}
// TODO(Subv):
Bl
en
d
the
pixels when horizontal / vertical
scaling is enabled
,
// TODO(Subv):
Implem
en
t
the
box filter when
scaling is enabled
// right now we're just skipping the extra pixels.
for
(
u32
y
=
0
;
y
<
output_height
;
++
y
)
{
for
(
u32
x
=
0
;
x
<
output_width
;
++
x
)
{
...
...
This diff is collapsed.
Click to expand it.
src/core/hw/gpu.h
+
7
−
2
View file @
23b401c3
...
...
@@ -188,6 +188,12 @@ struct Regs {
BitField
<
16
,
16
,
u32
>
input_height
;
};
enum
ScalingMode
:
u32
{
NoScale
=
0
,
// Doesn't scale the image
ScaleX
=
1
,
// Downscales the image in half in the X axis and applies a box filter
ScaleXY
=
2
,
// Downscales the image in half in both the X and Y axes and applies a box filter
};
union
{
u32
flags
;
...
...
@@ -197,8 +203,7 @@ struct Regs {
BitField
<
8
,
3
,
PixelFormat
>
input_format
;
BitField
<
12
,
3
,
PixelFormat
>
output_format
;
BitField
<
24
,
1
,
u32
>
scale_x
;
// Shrinks the image in half horizontally, blending the extra pixels
BitField
<
25
,
1
,
u32
>
scale_xy
;
// Shrinks the image horizontally and vertically, blending the extra pixels
BitField
<
24
,
2
,
ScalingMode
>
scaling
;
// Determines the scaling mode of the transfer
};
INSERT_PADDING_WORDS
(
0x1
);
...
...
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