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
0167e914
There was an error fetching the commit references. Please try again later.
Commit
0167e914
authored
10 years ago
by
archshift
Browse files
Options
Downloads
Patches
Plain Diff
utils: cleaned up DumpTGA, removing redundancies
parent
a1300865
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/video_core/utils.cpp
+12
-20
12 additions, 20 deletions
src/video_core/utils.cpp
src/video_core/utils.h
+1
-1
1 addition, 1 deletion
src/video_core/utils.h
with
13 additions
and
21 deletions
src/video_core/utils.cpp
+
12
−
20
View file @
0167e914
...
...
@@ -8,6 +8,7 @@
#include
"video_core/utils.h"
namespace
VideoCore
{
/**
* Dumps a texture to TGA
* @param filename String filename to dump texture to
...
...
@@ -16,29 +17,20 @@ namespace VideoCore {
* @param raw_data Raw RGBA8 texture data to dump
* @todo This should be moved to some general purpose/common code
*/
void
DumpTGA
(
std
::
string
filename
,
int
width
,
int
height
,
u8
*
raw_data
)
{
TGAHeader
hdr
;
FILE
*
fout
;
u8
r
,
g
,
b
;
memset
(
&
hdr
,
0
,
sizeof
(
hdr
));
hdr
.
datatypecode
=
2
;
// uncompressed RGB
hdr
.
bitsperpixel
=
24
;
// 24 bpp
hdr
.
width
=
width
;
hdr
.
height
=
height
;
fout
=
fopen
(
filename
.
c_str
(),
"wb"
);
void
DumpTGA
(
std
::
string
filename
,
short
width
,
short
height
,
u8
*
raw_data
)
{
TGAHeader
hdr
=
{
0
,
0
,
2
,
0
,
0
,
0
,
0
,
width
,
height
,
24
,
0
};
FILE
*
fout
=
fopen
(
filename
.
c_str
(),
"wb"
);
fwrite
(
&
hdr
,
sizeof
(
TGAHeader
),
1
,
fout
);
for
(
int
i
=
0
;
i
<
height
;
i
++
)
{
for
(
int
j
=
0
;
j
<
width
;
j
++
)
{
b
=
raw_data
[(
3
*
(
i
*
width
))
+
(
3
*
j
)
+
0
];
g
=
raw_data
[(
3
*
(
i
*
width
))
+
(
3
*
j
)
+
1
];
r
=
raw_data
[(
3
*
(
i
*
width
))
+
(
3
*
j
)
+
2
];
putc
(
b
,
fout
);
putc
(
g
,
fout
);
putc
(
r
,
fout
);
for
(
int
y
=
0
;
y
<
height
;
y
++
)
{
for
(
int
x
=
0
;
x
<
width
;
x
++
)
{
putc
(
raw_data
[(
3
*
(
y
*
width
))
+
(
3
*
x
)
+
0
],
fout
);
// b
putc
(
raw_data
[(
3
*
(
y
*
width
))
+
(
3
*
x
)
+
1
],
fout
);
// g
putc
(
raw_data
[(
3
*
(
y
*
width
))
+
(
3
*
x
)
+
2
],
fout
);
// r
}
}
fclose
(
fout
);
}
}
// namespace
This diff is collapsed.
Click to expand it.
src/video_core/utils.h
+
1
−
1
View file @
0167e914
...
...
@@ -59,6 +59,6 @@ struct TGAHeader {
* @param raw_data Raw RGBA8 texture data to dump
* @todo This should be moved to some general purpose/common code
*/
void
DumpTGA
(
std
::
string
filename
,
in
t
width
,
in
t
height
,
u8
*
raw_data
);
void
DumpTGA
(
std
::
string
filename
,
shor
t
width
,
shor
t
height
,
u8
*
raw_data
);
}
// namespace
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