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 6fe4c46..03b3051 100644 (file)
@@ -48,11 +48,13 @@ EXTENSIONS                  = [
        'GL_EXT_geometry_point_size',
        'GL_EXT_tessellation_shader',
        'GL_EXT_geometry_shader',
+       'GL_EXT_robustness',
        'GL_EXT_texture_buffer',
        'GL_EXT_texture_snorm',
        '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',
@@ -120,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)