1 | /*
|
---|
2 | * glpipeline.h - GL/2 OpenGL compatible library for OS/2
|
---|
3 | *
|
---|
4 | * Copyright 2010 - Apollo Demetrious Sharpe <demetrioussharpe@netscape.net>
|
---|
5 | *
|
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
7 | * copy of this software and associated documentation files (the "Software"),
|
---|
8 | * to deal in the Software without restriction, including without limitation
|
---|
9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
10 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
11 | * Software is furnished to do so, subject to the following conditions:
|
---|
12 | *
|
---|
13 | * The above copyright notice and this permission notice shall be included
|
---|
14 | * in all copies or substantial portions of the Software.
|
---|
15 | *
|
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
---|
17 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
19 | * STEPHEN PARKER, TERENCE RIPPERDA, OR ANY OTHER CONTRIBUTORS BE LIABLE FOR
|
---|
20 | * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
---|
21 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
|
---|
22 | * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
23 | */
|
---|
24 |
|
---|
25 |
|
---|
26 | #ifndef __GL_PIPELINE_H__
|
---|
27 | #define __GL_PIPELINE_H__
|
---|
28 |
|
---|
29 | #include <GL\pgl.h>
|
---|
30 | #include <ddk\GL\glapis.h>
|
---|
31 |
|
---|
32 | typedef struct pipelineops
|
---|
33 | {
|
---|
34 | /* pipe_init.c */
|
---|
35 | int (*PipeOpen)(void);
|
---|
36 | void (*PipeClose)(void);
|
---|
37 |
|
---|
38 | /* pipe_buffers.c */
|
---|
39 | BOOL (*PipeCreateContext)(PGLContext *Ctx, PVISUALCONFIG pVisualConfig, void *Sharelist, BOOL IsDirect);
|
---|
40 | BOOL (*PipeDestroyContext)(PGLContext *Ctx);
|
---|
41 | BOOL (*PipeCopyContext)(void *Ctx_src, void *Ctx_dst, GLuint attrib_mask);
|
---|
42 |
|
---|
43 | /* pipe_current */
|
---|
44 | BOOL (*PipeMakeCurrent)(PGLContext *Ctx);
|
---|
45 |
|
---|
46 | /* pipe_query */
|
---|
47 | PVISUALCONFIG* (*PipeQueryConfigs)(void);
|
---|
48 | LONG (*PipeQueryCapability)(void);
|
---|
49 | void (*PipeQueryVersion)(int *major, int *minor);
|
---|
50 |
|
---|
51 | /* pipe_bitmap.c */
|
---|
52 | BOOL (*PipeGrabFrontBitmap)(PGLContext *Ctx, HPS *phps, HBITMAP *phbitmap);
|
---|
53 | BOOL (*PipeReleaseFrontBitmap)(PGLContext *Ctx);
|
---|
54 |
|
---|
55 | /* pipe_palette.c */
|
---|
56 | int (*PipeSelectColorIndexPalette)(PGLContext *Ctx);
|
---|
57 |
|
---|
58 | /* pipe_buffers.c */
|
---|
59 | int (*PipeSetPalette)(PGLContext *Ctx);
|
---|
60 | void (*PipeSwapBuffers)(PGLContext *Ctx);
|
---|
61 | void (*PipeResizeBuffers)(PGLContext *Ctx, unsigned int delta_x, unsigned int delta_y, void *pBuffer);
|
---|
62 |
|
---|
63 | /* pipe_funcs.c */
|
---|
64 | PFN (*PipeGetProcAddress)(PCSZ);
|
---|
65 | } PIPELINEOPS, *PPIPELINEOPS;
|
---|
66 |
|
---|
67 | typedef struct pipeline
|
---|
68 | {
|
---|
69 | HMODULE Handle;
|
---|
70 | PIPELINEOPS *Ops;
|
---|
71 | } PIPELINE, *PPIPELINE;
|
---|
72 |
|
---|
73 |
|
---|
74 | #endif /* __GL_PIPELINE_H__ */
|
---|