Changeset 203
- Timestamp:
- 12/24/06 05:59:58 (2 years ago)
- Files:
-
- trunk/DerelictAL/derelict/openal/alfuncs.d (added)
- trunk/DerelictAL/derelict/openal/almanual.d (deleted)
- trunk/DerelictAL/derelict/openal/alstatic.d (deleted)
- trunk/DerelictGL/derelict/opengl/extension/arb/draw_buffers.d (modified) (1 diff)
- trunk/DerelictGL/derelict/opengl/extension/arb/multisample.d (modified) (1 diff)
- trunk/DerelictGL/derelict/opengl/extension/arb/texture_compression.d (modified) (1 diff)
- trunk/DerelictGL/derelict/opengl/extension/arb/transpose_matrix.d (modified) (1 diff)
- trunk/DerelictGL/derelict/opengl/extension/ext/framebuffer_blit.d (added)
- trunk/DerelictGL/derelict/opengl/extension/ext/framebuffer_multisample.d (added)
- trunk/DerelictGL/derelict/opengl/extension/ext/framebuffer_object.d (modified) (1 diff)
- trunk/DerelictGL/derelict/opengl/extension/ext/gpu_program_parameters.d (added)
- trunk/DerelictGL/derelict/opengl/extension/ext/packed_depth_stencil.d (added)
- trunk/DerelictGL/derelict/opengl/extension/ext/stencil_clear_tag.d (added)
- trunk/DerelictGL/derelict/opengl/extension/ext/texture_sRGB.d (added)
- trunk/DerelictGL/derelict/opengl/extension/ext/timer_query.d (added)
- trunk/DerelictGL/derelict/opengl/glext.d (modified) (1 diff)
- trunk/docs/derelictify.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/DerelictGL/derelict/opengl/extension/arb/draw_buffers.d
r192 r203 40 40 } 41 41 42 bool enabled = false;42 private bool enabled = false; 43 43 44 44 struct ARBDrawBuffers trunk/DerelictGL/derelict/opengl/extension/arb/multisample.d
r191 r203 40 40 } 41 41 42 bool enabled = false;42 private bool enabled = false; 43 43 44 44 struct ARBMultisample trunk/DerelictGL/derelict/opengl/extension/arb/texture_compression.d
r191 r203 40 40 } 41 41 42 bool enabled = false;42 private bool enabled = false; 43 43 44 44 struct ARBTextureCompression trunk/DerelictGL/derelict/opengl/extension/arb/transpose_matrix.d
r191 r203 40 40 } 41 41 42 bool enabled = false;42 private bool enabled = false; 43 43 44 44 struct ARBTransposeMatrix trunk/DerelictGL/derelict/opengl/extension/ext/framebuffer_object.d
r195 r203 40 40 } 41 41 42 bool enabled = false;42 private bool enabled = false; 43 43 44 44 struct EXTFramebufferObject trunk/DerelictGL/derelict/opengl/glext.d
r196 r203 73 73 import derelict.opengl.extension.ext.framebuffer_object; 74 74 import derelict.opengl.extension.ext.texture_filter_anisotropic; 75 import derelict.opengl.extension.ext.gpu_program_parameters; 76 import derelict.opengl.extension.ext.timer_query; 77 import derelict.opengl.extension.ext.framebuffer_multisample; 78 import derelict.opengl.extension.ext.framebuffer_blit; 79 import derelict.opengl.extension.ext.texture_sRGB; 80 import derelict.opengl.extension.ext.stencil_clear_tag; 75 81 } trunk/docs/derelictify.html
r197 r203 123 123 pfAnotherFooFunction AnotherFooFunction; 124 124 </pre> 125 126 <div class="note">In the future, Derelict packages will offer the option to127 bypass the manual loading of shared libraries and use import libraries instead.128 This approach requires another set of function declarations (specifically,129 declarations that are not function pointers). This feature will always be130 optional for package implementors, and documentation for the required steps will131 be added at a later date.</div>132 125 133 126 <h4>Loading the Shared Library</h4>
