cleanup specfile for packaging
[profile/ivi/cogl.git] / cogl / cogl-win32-renderer.c
1 /*
2  * Cogl
3  *
4  * An object oriented GL/GLES Abstraction/Utility Layer
5  *
6  * Copyright (C) 2011 Intel Corporation.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  *
23  * Authors:
24  *   Robert Bragg <robert@linux.intel.com>
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "cogl-renderer-private.h"
32 #include "cogl-win32-renderer.h"
33
34 CoglFilterReturn
35 cogl_win32_renderer_handle_event (CoglRenderer *renderer,
36                                   MSG *event)
37 {
38   return _cogl_renderer_handle_native_event (renderer, event);
39 }
40
41 void
42 cogl_win32_renderer_add_filter (CoglRenderer *renderer,
43                                 CoglWin32FilterFunc func,
44                                 void *data)
45 {
46   _cogl_renderer_add_native_filter (renderer,
47                                     (CoglNativeFilterFunc)func, data);
48 }
49
50 void
51 cogl_win32_renderer_remove_filter (CoglRenderer *renderer,
52                                    CoglWin32FilterFunc func,
53                                    void *data)
54 {
55   _cogl_renderer_remove_native_filter (renderer,
56                                        (CoglNativeFilterFunc)func, data);
57 }
58