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
11dd5dda
Commit
11dd5dda
authored
Feb 11, 2011
by
daniel@transgaming.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix varying packing.
TRAC #15550 Issue=111 Fix by Ranger Harke Signed-off-by: Daniel Koch git-svn-id:
https://angleproject.googlecode.com/svn/trunk@561
736b8ea6-26fd-11df-bfd4-992fa37f6226
parent
97750022
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
version.h
src/common/version.h
+1
-1
Program.cpp
src/libGLESv2/Program.cpp
+2
-2
No files found.
src/common/version.h
View file @
11dd5dda
#define MAJOR_VERSION 0
#define MINOR_VERSION 0
#define BUILD_VERSION 0
#define BUILD_REVISION 5
56
#define BUILD_REVISION 5
61
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
src/libGLESv2/Program.cpp
View file @
11dd5dda
...
...
@@ -1110,13 +1110,13 @@ int Program::packVaryings(const Varying *packing[][4])
for
(
int
x
=
0
;
x
<
4
;
x
++
)
{
if
(
space
[
x
]
>
n
&&
space
[
x
]
<
space
[
column
])
if
(
space
[
x
]
>
=
n
&&
space
[
x
]
<
space
[
column
])
{
column
=
x
;
}
}
if
(
space
[
column
]
>
n
)
if
(
space
[
column
]
>
=
n
)
{
for
(
int
r
=
0
;
r
<
maxVaryingVectors
;
r
++
)
{
...
...
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