Fix atomic ssbo xor test am: f0fa05e898 am: b426d8bfad am: 580f143209 am: 73a16f417e...
[platform/upstream/VK-GL-CTS.git] / scripts / opengl / src_util.py
index f2dd1d9..03b3051 100644 (file)
@@ -54,6 +54,7 @@ EXTENSIONS                    = [
        'GL_EXT_primitive_bounding_box',
        'GL_OES_EGL_image',
        'GL_OES_compressed_ETC1_RGB8_texture',
+       'GL_OES_compressed_paletted_texture',
        'GL_OES_texture_half_float',
        'GL_OES_texture_storage_multisample_2d_array',
        'GL_OES_sample_shading',
@@ -121,6 +122,7 @@ def getVersionToken (api, version):
 
 def genCommandList(iface, renderCommand, directory, filename, align=False):
        lines = map(renderCommand, iface.commands)
+       lines = filter(lambda l: l != None, lines)
        if align:
                lines = indentLines(lines)
        writeInlFile(os.path.join(directory, filename), lines)