Changeset 62:960206198cbd

Show
Ignore:
Timestamp:
06/27/08 12:19:46 (7 months ago)
Author:
Diggory Hardy <diggory.hardy@gmail.com>
branch:
default
Message:

Documentation changes only. (Idea for new gui.content.Items module; unused gl.texture module commented out.)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • mde/Options.d

    r53 r62  
    300300        /** mixin impl("type symbol[, symbol[...]];[type symbol[...];][...]") 
    301301         * 
    302          * E.g. 
     302         * Where type is one of bool, int, double, char[]. E.g. 
    303303         * --- 
    304304         * mixin (impl ("bool a, b; int i;")); 
     
    317317         * 
    318318         * Extending: mixins could also be used for the static this() {...} or even the whole 
    319          * class, but doing would rather decrease readability of any implementation. */ 
     319         * class, but doing so would rather decrease readability of any implementation. */ 
    320320        template impl(char[] A /+, char[] symb+/) { 
    321321            const char[] impl = A~"\nthis(){\n"~aaDefs!(A)~"}"; 
  • mde/gl/texture.d

    r55 r62  
    1313You should have received a copy of the GNU General Public License 
    1414along with this program.  If not, see <http://www.gnu.org/licenses/>. */ 
     15 
     16/++ 
     17This module is unused and untested. The main reason being using glBindTexture to use multiple 
     18textures isn't working for me. 
     19--- 
    1520 
    1621/** Simple module for loading images. 
     
    112117} 
    113118 
     119--- 
     120+/ 
  • mde/gui/widget/TextWidget.d

    r61 r62  
    1414along with this program.  If not, see <http://www.gnu.org/licenses/>. */ 
    1515 
    16 /** Basic text widget and supporting code for widgets containing text. */ 
     16/** Basic text widget and supporting code for widgets containing text. 
     17 * 
     18 * All content widgets have one (at least for basic content widgets) Content, from 
     19 * mde.gui.content.Items . */ 
    1720module mde.gui.widget.TextWidget; 
    1821