blob: c58ba3fdd8e3e4e1320aac5fdd99a131ab14419c [file] [log] [blame]
//
// Copyright (c) 2014 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.
//
#ifndef SAMPLE_UTIL_WIN32_WINDOW_H
#define SAMPLE_UTIL_WIN32_WINDOW_H
#include "OSWindow.h"
#include <string>
#include <windows.h>
class Win32Window : public OSWindow
{
public:
Win32Window();
~Win32Window();
bool initialize(const std::string &name, size_t width, size_t height);
void destroy();
EGLNativeWindowType getNativeWindow() const;
EGLNativeDisplayType getNativeDisplay() const;
void messageLoop();
bool popEvent(Event *event);
void pushEvent(Event event);
void setMousePosition(int x, int y);
bool resize(int width, int height);
private:
std::string mClassName;
EGLNativeWindowType mNativeWindow;
EGLNativeDisplayType mNativeDisplay;
};
#endif // SAMPLE_UTIL_WINDOW_H