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
0608ad1f
Commit
0608ad1f
authored
Jul 29, 2011
by
daniel@transgaming.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win64: fix return value from lookupAttribute
Issue=190 Author: Makoto Kato git-svn-id:
https://angleproject.googlecode.com/svn/trunk@707
736b8ea6-26fd-11df-bfd4-992fa37f6226
parent
84d7cbc3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
CONTRIBUTORS
CONTRIBUTORS
+3
-2
version.h
src/common/version.h
+1
-1
VertexDataManager.cpp
src/libGLESv2/VertexDataManager.cpp
+1
-1
VertexDataManager.h
src/libGLESv2/VertexDataManager.h
+1
-1
No files found.
CONTRIBUTORS
View file @
0608ad1f
...
@@ -19,16 +19,17 @@ Google Inc.
...
@@ -19,16 +19,17 @@ Google Inc.
Henry Bridge
Henry Bridge
Nat Duca
Nat Duca
Vangelis Kokkevis
Vangelis Kokkevis
Zhenyao Mo
Alastair Patrick
Alastair Patrick
Alok Priyadarshi
Alok Priyadarshi
Kenneth Russell
Kenneth Russell
Ben Vanik
Ben Vanik
Adrienne Walker
Adrienne Walker
Zhenyao Mo
Mozilla Corp.
Mozilla Corp.
Vladimir Vukicevic
Benoit Jacob
Benoit Jacob
Makoto Kato
Vladimir Vukicevic
Apple Inc.
Apple Inc.
David Kilzer
David Kilzer
...
...
src/common/version.h
View file @
0608ad1f
#define MAJOR_VERSION 0
#define MAJOR_VERSION 0
#define MINOR_VERSION 0
#define MINOR_VERSION 0
#define BUILD_VERSION 0
#define BUILD_VERSION 0
#define BUILD_REVISION 70
5
#define BUILD_REVISION 70
7
#define STRINGIFY(x) #x
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
#define MACRO_STRINGIFY(x) STRINGIFY(x)
...
...
src/libGLESv2/VertexDataManager.cpp
View file @
0608ad1f
...
@@ -719,7 +719,7 @@ void StaticVertexBuffer::reserveRequiredSpace()
...
@@ -719,7 +719,7 @@ void StaticVertexBuffer::reserveRequiredSpace()
mRequiredSpace
=
0
;
mRequiredSpace
=
0
;
}
}
UINT
StaticVertexBuffer
::
lookupAttribute
(
const
VertexAttribute
&
attribute
)
std
::
size_t
StaticVertexBuffer
::
lookupAttribute
(
const
VertexAttribute
&
attribute
)
{
{
for
(
unsigned
int
element
=
0
;
element
<
mCache
.
size
();
element
++
)
for
(
unsigned
int
element
=
0
;
element
<
mCache
.
size
();
element
++
)
{
{
...
...
src/libGLESv2/VertexDataManager.h
View file @
0608ad1f
...
@@ -93,7 +93,7 @@ class StaticVertexBuffer : public ArrayVertexBuffer
...
@@ -93,7 +93,7 @@ class StaticVertexBuffer : public ArrayVertexBuffer
void
*
map
(
const
VertexAttribute
&
attribute
,
std
::
size_t
requiredSpace
,
std
::
size_t
*
streamOffset
);
void
*
map
(
const
VertexAttribute
&
attribute
,
std
::
size_t
requiredSpace
,
std
::
size_t
*
streamOffset
);
void
reserveRequiredSpace
();
void
reserveRequiredSpace
();
UINT
lookupAttribute
(
const
VertexAttribute
&
attribute
);
// Returns the offset into the vertex buffer, or -1 if not found
std
::
size_t
lookupAttribute
(
const
VertexAttribute
&
attribute
);
// Returns the offset into the vertex buffer, or -1 if not found
private
:
private
:
struct
VertexElement
struct
VertexElement
...
...
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