Silently ignore attempts to delete default VAO.
The spec for glDeleteVertexArrays states that "Unused names in arrays
are silently ignored, as is the value zero."
b/116699321
Change-Id: I7cca0336dd9841b360f8fa20f6c0ac9677ec3ce1
Reviewed-on: https://swiftshader-review.googlesource.com/21048
Reviewed-by: Chris Forbes <chrisforbes@google.com>
Reviewed-by: Alexis Hétu <sugoi@google.com>
Tested-by: Nicolas Capens <nicolascapens@google.com>
diff --git a/src/OpenGL/libGLESv2/libGLESv3.cpp b/src/OpenGL/libGLESv2/libGLESv3.cpp
index 709c129..89055d8 100644
--- a/src/OpenGL/libGLESv2/libGLESv3.cpp
+++ b/src/OpenGL/libGLESv2/libGLESv3.cpp
@@ -1499,7 +1499,10 @@
{
for(int i = 0; i < n; i++)
{
- context->deleteVertexArray(arrays[i]);
+ if(arrays[i] != 0) // Attempts to delete default vertex array silently ignored.
+ {
+ context->deleteVertexArray(arrays[i]);
+ }
}
}
}
@@ -3374,7 +3377,7 @@
{
for(int i = 0; i < n; i++)
{
- if(ids[i] != 0)
+ if(ids[i] != 0) // Attempts to delete default transform feedback silently ignored.
{
es2::TransformFeedback *transformFeedbackObject = context->getTransformFeedback(ids[i]);