Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mesa
piglit
Commits
d265ad15
Commit
d265ad15
authored
Feb 20, 2011
by
Marek Olšák
Browse files
draw-vertices: test mixed user and vbo buffers
parent
7e88eb12
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/general/draw-vertices.c
View file @
d265ad15
...
...
@@ -407,6 +407,36 @@ static void test_interleaved_vertices(float x1, float y1, float x2, float y2, in
glDeleteBuffers
(
1
,
&
vbo
);
}
static
void
test_mixed_user_and_vbo_buffers
(
float
x1
,
float
y1
,
float
x2
,
float
y2
,
int
index
)
{
float
v2
[]
=
{
x1
,
y1
,
x1
,
y2
,
x2
,
y1
};
float
c3
[]
=
{
0
,
0
,
1
,
0
,
0
,
1
,
0
,
0
,
1
};
GLuint
vbo
;
glEnableClientState
(
GL_COLOR_ARRAY
);
if
(
!
index
)
{
glColorPointer
(
3
,
GL_FLOAT
,
0
,
c3
);
vbo
=
vboVertexPointer
(
2
,
GL_FLOAT
,
0
,
v2
,
sizeof
(
v2
),
0
);
}
else
{
glVertexPointer
(
2
,
GL_FLOAT
,
0
,
v2
);
vbo
=
vboColorPointer
(
3
,
GL_FLOAT
,
0
,
c3
,
sizeof
(
c3
),
0
);
}
glDrawArrays
(
GL_TRIANGLES
,
0
,
3
);
glDisableClientState
(
GL_COLOR_ARRAY
);
glDeleteBuffers
(
1
,
&
vbo
);
}
struct
test
{
void
(
*
test
)(
float
x1
,
float
y1
,
float
x2
,
float
y2
,
int
index
);
int
index
;
...
...
@@ -463,6 +493,9 @@ struct test tests[] = {
{
test_interleaved_vertices
,
2
,
{
0
,
1
,
0
},
"Interleaved VBO - gap: 2"
},
{
test_interleaved_vertices
,
3
,
{
0
,
1
,
0
},
"Interleaved VBO - gap: 4"
},
{
test_mixed_user_and_vbo_buffers
,
0
,
{
0
,
0
,
1
},
"Mixed buffers - 0: vbo, 1: user"
},
{
test_mixed_user_and_vbo_buffers
,
1
,
{
0
,
0
,
1
},
"Mixed buffers - 0: user, 1: vbo"
},
{
test_large_vertex_count
,
0
,
{
1
,
1
,
1
},
"Large vertex count"
},
{
0
}
...
...
@@ -498,4 +531,3 @@ piglit_display(void)
return
pass
?
PIGLIT_SUCCESS
:
PIGLIT_FAILURE
;
}
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