~ubuntu-branches/ubuntu/oneiric/lwjgl/oneiric

« back to all changes in this revision

Viewing changes to src/native/common/extcl.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Gilbert, Michael Gilbert, Niels Thykier
  • Date: 2011-05-08 22:50:00 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110508225000-w0fmroiy6kvgo944
Tags: 2.7.1+dfsg-1
[ Michael Gilbert ]
* new upstream release:
  - refresh debian patches.
* add myself as an uploader.
* don't build-depend on sun-java-6
* use jh_clean

[ Niels Thykier ]
* Bumped Standards-Version to 3.9.2 - no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2002-2008 LWJGL Project
 
3
 * All rights reserved.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions are
 
7
 * met:
 
8
 *
 
9
 * * Redistributions of source code must retain the above copyright
 
10
 *   notice, this list of conditions and the following disclaimer.
 
11
 *
 
12
 * * Redistributions in binary form must reproduce the above copyright
 
13
 *   notice, this list of conditions and the following disclaimer in the
 
14
 *   documentation and/or other materials provided with the distribution.
 
15
 *
 
16
 * * Neither the name of 'LWJGL' nor the names of
 
17
 *   its contributors may be used to endorse or promote products derived
 
18
 *   from this software without specific prior written permission.
 
19
 *
 
20
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
21
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 
22
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
23
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
24
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
25
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
26
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
27
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 
28
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 
29
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
30
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
31
 */
 
32
 
 
33
#ifndef __EXTCL_H__
 
34
#define __EXTCL_H__
 
35
 
 
36
#include <jni.h>
 
37
 
 
38
#ifdef __APPLE__
 
39
    #include <OpenCL/cl_platform.h>
 
40
#else
 
41
    #include <CL/cl_platform.h>
 
42
#endif
 
43
 
 
44
#include "common_tools.h"
 
45
 
 
46
#ifdef __cplusplus
 
47
extern "C" {
 
48
#endif
 
49
 
 
50
#include "extgl_types.h"
 
51
#include "extcl_types.h"
 
52
 
 
53
// -----------------[ OpenGL-dependent typedefs ]-----------------
 
54
typedef GLsync              cl_GLsync;
 
55
 
 
56
// -----------------[ Callback function typedefs ]-----------------
 
57
 
 
58
#ifndef CL_CALLBACK
 
59
    #define CL_CALLBACK
 
60
#endif
 
61
 
 
62
// TODO: This is a bug in current CL implementations (AMD's only?), remove when fixed. (used for cl_native_kernel_func)
 
63
#if defined(_WIN32)
 
64
    #define CL_USER_FUNC_CALLBACK   __cdecl
 
65
#else
 
66
    #define CL_USER_FUNC_CALLBACK   CL_CALLBACK
 
67
#endif
 
68
 
 
69
typedef void (CL_CALLBACK * cl_create_context_callback)(const char *errinfo, const void *private_info, size_t cb, void *user_data);
 
70
typedef void (CL_CALLBACK * cl_mem_object_destructor_callback)(cl_mem memobj, void *user_data);
 
71
typedef void (CL_CALLBACK * cl_build_program_callback)(cl_program program, void *user_data);
 
72
typedef void (CL_CALLBACK * cl_event_callback)(cl_event event, cl_int event_command_exec_status, void *user_data);
 
73
typedef void (CL_USER_FUNC_CALLBACK * cl_native_kernel_func)(void *args);
 
74
 
 
75
// -----------------[ Cross-platform functions ]-----------------
 
76
 
 
77
void* extcl_GetProcAddress(const char* function);
 
78
void extcl_InitializeClass(JNIEnv *env, jclass clazz, int num_functions, JavaMethodAndExtFunction *functions);
 
79
int extcl_CalculateImageSize(const size_t *region, size_t row_pitch, size_t slice_pitch);
 
80
 
 
81
// -----------------[ Platform dependent functions ]-----------------
 
82
 
 
83
void *extcl_NativeGetFunctionPointer(const char *function);
 
84
void extcl_LoadLibrary(JNIEnv *env, jstring path);
 
85
void extcl_UnloadLibrary();
 
86
 
 
87
#ifdef __cplusplus
 
88
}
 
89
#endif
 
90
 
 
91
#endif