]> git.sesse.net Git - vlc/blobdiff - src/misc/objects.c
Remove VLC_OBJECT_OPENGL
[vlc] / src / misc / objects.c
index af215e2be1bc119b89cea9dfa5d1ddc5fd1b6ae8..9493a013bf2d9471561e83889310d440c4f2b670 100644 (file)
@@ -231,10 +231,6 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
             i_size = sizeof(aout_instance_t);
             psz_type = "audio output";
             break;
-        case VLC_OBJECT_OPENGL:
-            i_size = sizeof( vout_thread_t );
-            psz_type = "opengl";
-            break;
         default:
             assert( i_type > 0 ); /* unknown type?! */
             i_size = i_type;