From 88a5324d0d2e1bf411e970d09e92703027d0d524 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 25 Nov 2009 07:42:23 +0000 Subject: [PATCH] SDL_CreateWindowFrom() is actually going to be supported. :) --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404234 --- include/SDL_video.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/SDL_video.h b/include/SDL_video.h index 96cd9042b..3e816018c 100644 --- a/include/SDL_video.h +++ b/include/SDL_video.h @@ -538,14 +538,12 @@ extern DECLSPEC SDL_WindowID SDLCALL SDL_CreateWindow(const char *title, int h, Uint32 flags); /** - * \brief Create an SDL window struct from an existing native window. + * \brief Create an SDL window from an existing native window. * * \param data A pointer to driver-dependent window creation data * * \return The id of the window created, or zero if window creation failed. * - * \warning This function is NOT SUPPORTED, use at your own risk! - * * \sa SDL_DestroyWindow() */ extern DECLSPEC SDL_WindowID SDLCALL SDL_CreateWindowFrom(const void *data);