Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
angle
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
angle
Commits
7f02008a
Commit
7f02008a
authored
Oct 12, 2011
by
daniel@transgaming.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warnings in translator.cpp
Bug=227 Author: Mark Callow git-svn-id:
https://angleproject.googlecode.com/svn/trunk@790
736b8ea6-26fd-11df-bfd4-992fa37f6226
parent
876f47ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
translator.cpp
samples/translator/translator.cpp
+2
-2
version.h
src/common/version.h
+1
-1
No files found.
samples/translator/translator.cpp
View file @
7f02008a
...
...
@@ -149,12 +149,12 @@ int main(int argc, char* argv[])
}
if
(
compiled
&&
(
compileOptions
&
SH_ATTRIBUTES_UNIFORMS
))
{
LogMsg
(
"BEGIN"
,
"COMPILER"
,
numCompiles
,
"ACTIVE ATTRIBS"
);
PrintActiveVariables
(
compiler
,
SH_ACTIVE_ATTRIBUTES
,
compileOptions
&
SH_MAP_LONG_VARIABLE_NAMES
);
PrintActiveVariables
(
compiler
,
SH_ACTIVE_ATTRIBUTES
,
(
compileOptions
&
SH_MAP_LONG_VARIABLE_NAMES
)
!=
0
);
LogMsg
(
"END"
,
"COMPILER"
,
numCompiles
,
"ACTIVE ATTRIBS"
);
printf
(
"
\n\n
"
);
LogMsg
(
"BEGIN"
,
"COMPILER"
,
numCompiles
,
"ACTIVE UNIFORMS"
);
PrintActiveVariables
(
compiler
,
SH_ACTIVE_UNIFORMS
,
compileOptions
&
SH_MAP_LONG_VARIABLE_NAMES
);
PrintActiveVariables
(
compiler
,
SH_ACTIVE_UNIFORMS
,
(
compileOptions
&
SH_MAP_LONG_VARIABLE_NAMES
)
!=
0
);
LogMsg
(
"END"
,
"COMPILER"
,
numCompiles
,
"ACTIVE UNIFORMS"
);
printf
(
"
\n\n
"
);
}
...
...
src/common/version.h
View file @
7f02008a
#define MAJOR_VERSION 0
#define MINOR_VERSION 0
#define BUILD_VERSION 0
#define BUILD_REVISION 7
89
#define BUILD_REVISION 7
90
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
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