1 | /*
|
---|
2 | * pipeline.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_H__
|
---|
27 | #define __GL_H__
|
---|
28 |
|
---|
29 |
|
---|
30 | #include <ddk\GL\glapis.h>
|
---|
31 | #include "stage.h"
|
---|
32 |
|
---|
33 | /* pipe_init.c */
|
---|
34 | int Open(void);
|
---|
35 | void Close(void);
|
---|
36 |
|
---|
37 | /* pipe_buffers.c */
|
---|
38 | BOOL CreateContext(PGLContext *Ctx, PVISUALCONFIG pVisualConfig, void *Sharelist, BOOL IsDirect);
|
---|
39 | BOOL DestroyContext(PGLContext *Ctx);
|
---|
40 | BOOL CopyContext(void *Ctx_src, void *Ctx_dst, GLuint attrib_mask);
|
---|
41 |
|
---|
42 | /* pipe_current */
|
---|
43 | BOOL MakeCurrent(PGLContext *Ctx);
|
---|
44 |
|
---|
45 | /* pipe_query */
|
---|
46 | PVISUALCONFIG* QueryConfigs(void);
|
---|
47 | LONG QueryCapability(void);
|
---|
48 | void QueryVersion(int *major, int *minor);
|
---|
49 |
|
---|
50 | /* pipe_bitmap.c */
|
---|
51 | BOOL GrabFrontBitmap(PGLContext *Ctx, HPS *phps, HBITMAP *phbitmap);
|
---|
52 | BOOL ReleaseFrontBitmap(PGLContext *Ctx);
|
---|
53 |
|
---|
54 | /* pipe_palette.c */
|
---|
55 | int SelectColorIndexPalette(PGLContext *Ctx);
|
---|
56 |
|
---|
57 | /* pipe_buffers.c */
|
---|
58 | int SetPalette(PGLContext *Ctx);
|
---|
59 | void SwapBuffers(PGLContext *Ctx);
|
---|
60 | void ResizeBuffers(PGLContext *Ctx, unsigned int delta_x, unsigned int delta_y, void *pBuffer);
|
---|
61 |
|
---|
62 | /* pipe_funcs.c */
|
---|
63 | PFN GetProcAddress(PCSZ);
|
---|
64 |
|
---|
65 | PIPELINEOPS PipelineOps =
|
---|
66 | {
|
---|
67 | Open,
|
---|
68 | Close,
|
---|
69 | CreateContext,
|
---|
70 | DestroyContext,
|
---|
71 | CopyContext,
|
---|
72 | MakeCurrent,
|
---|
73 | QueryConfigs,
|
---|
74 | QueryCapability,
|
---|
75 | QueryVersion,
|
---|
76 | GrabFrontBitmap,
|
---|
77 | ReleaseFrontBitmap,
|
---|
78 | SelectColorIndexPalette,
|
---|
79 | SetPalette,
|
---|
80 | SwapBuffers,
|
---|
81 | ResizeBuffers,
|
---|
82 | GetProcAddress
|
---|
83 | };
|
---|
84 |
|
---|
85 | class Pipeline
|
---|
86 | {
|
---|
87 | public:
|
---|
88 | Pipeline();
|
---|
89 | ~Pipeline();
|
---|
90 |
|
---|
91 | void Emit(PGLContext *ctx);
|
---|
92 |
|
---|
93 | private:
|
---|
94 | void Evaluate(PGLContext *ctx);
|
---|
95 | void Run(PGLContext *ctx);
|
---|
96 |
|
---|
97 | /* Pipelines */
|
---|
98 | Stage *pcCurrentPipeline;
|
---|
99 | Stage *pcFixedPipe;
|
---|
100 | Stage *pcProgPipe;
|
---|
101 | Stage *pcDevicePipe;
|
---|
102 | };
|
---|
103 |
|
---|
104 | StageFn pfnTransform;
|
---|
105 | StageFn pfnLighting;
|
---|
106 | StageFn pfnTexGenTrans;
|
---|
107 | StageFn pfnClipping;
|
---|
108 | StageFn pfnRasterization;
|
---|
109 | StageFn pfnTexturing;
|
---|
110 | StageFn pfnColoring;
|
---|
111 | StageFn pfnFogging;
|
---|
112 | StageFn pfnAntialiasing;
|
---|
113 | StageFn pfnFragOps;
|
---|
114 | StageFn pfnVertShading;
|
---|
115 | StageFn pfnFragShading;
|
---|
116 |
|
---|
117 |
|
---|
118 | #endif /* __GL_H__ */
|
---|