LearnOpenGL

Translation in progress of learnopengl.com.
git clone https://git.mtkn.jp/LearnOpenGL
Log | Files | Refs

How-to-publish.html (4680B)


      1     <div id="content">
      2     <h1 id="content-title">How to publish</h1>
      3 <h1 id="content-url" style='display:none;'>Guest-Articles/How-to-publish</h1>
      4 <p>
      5 If you'd like to write your own article and have it published on LearnOpenGL for everyone to read you can send over your article to me by <a href="mailto:joey.d.vries@gmail.com">e-mail</a>. By having interested readers publish their own articles on LearnOpenGL I hope this website will be more than just an online book, but a more centralized knowledge platform for everything OpenGL.
      6 </p>
      7 
      8 <p>
      9 If you'd like to publish an article you'll want to follow the following guidelines:
     10 </p>
     11 
     12 <ul>
     13 <li>Article should be OpenGL related. Articles may be technical e.g. <em>How to use <function id='1'>glDrawArrays</function>Indirect and compute shaders to efficiently render large scenes</em>, or sementical e.g. <em>How I learned OpenGL in 30 days</em>.</li>
     14 <li>Article needs to have a positive impact on LearnOpenGL e.g. be educational, informative, inspirational.</li>
     15 <li>Article should be written in a style similar to LearnOpenGL: a more step-by-step approach to writing tutorials.</li>
     16 <li>When using shaders and/or a camera, make sure to use LearnOpenGL's shader and camera includes for consistency with all the other articles. Similarly, use GLFW and GLAD.</li>
     17 <li>Article should use HTML tags to organize its layout. There is a source page you can find <a href="https://learnopengl.com/demo/example_page.txt" target="_blank">here</a> as an example (replace <code>.txt</code> extension with <code>.html</code> to view as HTML). Additionally, copy this <a href="https://learnopengl.com/demo/layout.css" target="_blank">example CSS</a> file in the same folder to test with similar styling/layout.</li>
     18   <li>Add <code>target="_blank"</code> to your URLs/links (see example page) so pages open in a new tab by default.</li>
     19   <li>When using the <code>&lt;</code> or <code>&gt;</code> symbol it may break the page as these are used for HTML tags. Use <b>&#38lt;</b> and <b>&#38gt;</b> instead. </li>
     20 <li>Images/videos can be referenced by URL. If you'd like to use locally hosted images/videos, send them alongside your article and reference them as `/img/guest/&lt;year&gt;/&lt;your_article_name&gt;/&lt;image.png&gt;` with `&lt;your_article_name&gt;` in lowercase and seperated by underlines.</li>
     21  <li>Images should not be wider than 800px, height can be anything.</li>
     22 <li>When displaying code in your article, make sure to use spaces over tabs (4 spaces per tab).</li>
     23 <li>If the article is technical, try to keep the code as self-contained (and as few files) as possible. And make the full source code available.</li>
     24 <li>It's perfectly fine to have your article be a series of articles e.g. <em>Terrain rendering tutorial part X/5</em>.</li>
     25   <li>When referencing original LearnOpenGL chapters, try to link to them and use the word <em>Chapter</em> over article/tutorial to keep that online 'book' feeling.</li>
     26 <li>Article should of course be technically and mathematically sound.</li>
     27 <li>Preferably keep the article name short so it fits in the sidebar :)</li>
     28 <li>Check with me first before you start as someone else may already be working on the same topic or the topic doesn't match well.</li>
     29 </ul>
     30 
     31 <p>
     32 As I intend to keep the quality-bar high, I'll be thorough in enforcing these restrictions. This means there's a good chance I'll reject your article, or return it with a significant amount of feedback. Nevertheless, if you followed the guidelines and generally make for an interesting article that adds something on top of the already existing content it's likely your article ends up on LearnOpenGL. 
     33 </p>
     34 
     35 <p>
     36 When you submit an article, please mention your full name, and a link to your website/blog if you'd like the additional exposure.
     37 </p>
     38 
     39 <h2>Topic suggestions</h2>
     40 <p>
     41   If you'd like to contribute but don't know what to write about, the following topics are a selection of highly requested topics: 
     42 </p>
     43 
     44 <ul>
     45   <li>Casaded Shadow Mapping</li>
     46   <li>Depth of Field</li>
     47   <li>Motion Blur</li>
     48   <li>Temporal AA</li>
     49   <li>Compute Shaders</li>
     50   <li>OpenGL 4+ features</li>
     51   <li>Tesselation Shaders</li>
     52   <li>Reflection Probes (and in-between blending)</li>
     53   <li>Heightmaps (with dynamic LOD-ing using quadtree or octree, and layers for grass/mud/sand/rock textures)</li>
     54   <li>Lens flares</li>
     55   <li>Decals</li>
     56   <li>GPU particle effects</li>
     57   <li>Global Illumination</li>
     58   <li>Light Adaptation</li>
     59   <li>HBAO+</li>
     60   <li>Water Simulation</li>
     61   <li>Forward+ Rendering</li>
     62   <li>GPU programming, creating optimized shaders</li>
     63   <li>Procedural clouds/sky</li>
     64 </ul>       
     65 
     66     </div>
     67