aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/primitive_assembly.h
diff options
context:
space:
mode:
authorGravatar Tony Wasserka <NeoBrainX@gmail.com>2014-12-07 00:26:48 +0100
committerGravatar Tony Wasserka <NeoBrainX@gmail.com>2014-12-20 18:06:54 +0100
commitcd322e328ec6957b6744ee9b68d29b2c29a554df (patch)
treefec41fd5536f562e7a842d86176224dddd6e1df0 /src/video_core/primitive_assembly.h
parent346012f29e244489681d2cdf2cf6291d04fbed33 (diff)
Pica/PrimitiveAssembly: Implement triangle strips.
Diffstat (limited to 'src/video_core/primitive_assembly.h')
-rw-r--r--src/video_core/primitive_assembly.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/primitive_assembly.h b/src/video_core/primitive_assembly.h
index ea2e2f61..decf0fd6 100644
--- a/src/video_core/primitive_assembly.h
+++ b/src/video_core/primitive_assembly.h
@@ -37,6 +37,7 @@ private:
int buffer_index;
VertexType buffer[2];
+ bool strip_ready = false;
};