blob: e233788b38aed5a32e5772f4624938f922b4198e [file] [log] [blame]
//
// Copyright (c) 2002-2013 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// win32/windowutils.cpp: Win32 specific window utility functionality
#include "common/windowutils.h"
namespace egl
{
bool verifyWindowAccessible(EGLNativeWindowType window)
{
return (::IsWindow(window) != FALSE);
}
} // namespace egl