source: pipeline/include/pipeline.h@ 85

Last change on this file since 85 was 85, checked in by Apollo Demetrious Sharpe, 14 years ago

Changed the license to reflect that this is the GL/2 project.

File size: 3.2 KB
Line 
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 */
34int Open(void);
35void Close(void);
36
37/* pipe_buffers.c */
38BOOL CreateContext(PGLContext *Ctx, PVISUALCONFIG pVisualConfig, void *Sharelist, BOOL IsDirect);
39BOOL DestroyContext(PGLContext *Ctx);
40BOOL CopyContext(void *Ctx_src, void *Ctx_dst, GLuint attrib_mask);
41
42/* pipe_current */
43BOOL MakeCurrent(PGLContext *Ctx);
44
45/* pipe_query */
46PVISUALCONFIG* QueryConfigs(void);
47LONG QueryCapability(void);
48void QueryVersion(int *major, int *minor);
49
50/* pipe_bitmap.c */
51BOOL GrabFrontBitmap(PGLContext *Ctx, HPS *phps, HBITMAP *phbitmap);
52BOOL ReleaseFrontBitmap(PGLContext *Ctx);
53
54/* pipe_palette.c */
55int SelectColorIndexPalette(PGLContext *Ctx);
56
57/* pipe_buffers.c */
58int SetPalette(PGLContext *Ctx);
59void SwapBuffers(PGLContext *Ctx);
60void ResizeBuffers(PGLContext *Ctx, unsigned int delta_x, unsigned int delta_y, void *pBuffer);
61
62/* pipe_funcs.c */
63PFN GetProcAddress(PCSZ);
64
65PIPELINEOPS 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
85class Pipeline
86{
87public:
88 Pipeline();
89 ~Pipeline();
90
91 void Emit(PGLContext *ctx);
92
93private:
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
104StageFn pfnTransform;
105StageFn pfnLighting;
106StageFn pfnTexGenTrans;
107StageFn pfnClipping;
108StageFn pfnRasterization;
109StageFn pfnTexturing;
110StageFn pfnColoring;
111StageFn pfnFogging;
112StageFn pfnAntialiasing;
113StageFn pfnFragOps;
114StageFn pfnVertShading;
115StageFn pfnFragShading;
116
117
118#endif /* __GL_H__ */
Note: See TracBrowser for help on using the repository browser.