Merge pull request #55 from ChristophHaag/master

fix handle_event -> handleEvent in shadowmapping
This commit is contained in:
Sascha Willems 2016-03-02 21:52:58 +01:00
commit 6af10ce764

View file

@ -1166,11 +1166,11 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
#else
static void handle_event(const xcb_generic_event_t *event)
static void handleEvent(const xcb_generic_event_t *event)
{
if (vulkanExample != NULL)
{
vulkanExample->handle_event(event);
vulkanExample->handleEvent(event);
}
}
#endif