はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    猛暑に注意を

『Main - Codeflow』

  • 人気
  • 新着
  • すべて
  • Some issues with Apples iOS WebGL implementation - Codeflow

    3 users

    codeflow.org

    Now that Apple has released iOS 8 beta, I had a look at their WebGL implementation in mobile safari. I think it's great that WebGL is finally coming to iOS. However I could not help to notice some shortcomings of their implementation, and I'd like to expand upon those in this post. ContentsUpdate: iOS 9.3Update: iOS 8 Beta 3Update: iOS 8 Beta 2WebGL capabilitiesHardcoded constraints on iOSMissing

    • テクノロジー
    • 2014/06/10 02:45
    • Easy wireframe display with barycentric coordinates - Codeflow

      8 users

      codeflow.org

      Sometimes it's required to display a wireframe of your model. The following post looks into how to do that in a flexible way. If you debug your WebGL program or if you have a need to display a wireframe of your model in WebGL, there is one traditional choice: gl.LINES. However this requires you to supply a separate mesh to the GPU independently of your model. This can be inconvenient and wasteful.

      • 暮らし
      • 2013/12/28 05:07
      • CG
      • プログラム
      • How to write portable WebGL - Codeflow

        9 users

        codeflow.org

        When programming WebGL you need to be careful to make it portable. The following post will explain how to make WebGL portable across many devices, what to look out for and techniques to work around the limitations you face. If you are interested to read more about the reasons to use WebGL you can check out my earlier article on that. This post also assumes that you have a good familiarity with Web

        • テクノロジー
        • 2013/02/23 06:50
        • WebGL
        • チュートリアル
        • High Performance JS heatmaps - Codeflow

          38 users

          codeflow.org

          You can draw around 500'000 individual data points per second in realtime. Around 10'000 per frame are no problem. The way it works is that points to draw are recorded into a position buffer (10k points) and when you call heatmap.update() (or when the buffer is full) it draws these points with WebGL by additively blending them into an off-screen floating point texture. QualityThe heat is updated/r

          • テクノロジー
          • 2013/02/04 18:00
          • heatmap
          • javascript
          • WebGL
          • visualization
          • js
          • プログラミング
          • HTML5
          • Why you should use WebGL - Codeflow

            3 users

            codeflow.org

            There is (among graphics enthusiasts) a lot of debate what API/version of something to use with a bunch of hotly contested alternatives. I would like to convince you to give WebGL a try, and this blog post explains why. It will also quickly summarize a few things people usually ask about WebGL. There are many gotchas (like with anything) as well, and I am aware of a lot more of them than you can i

            • 暮らし
            • 2013/02/03 09:15
            • Keyboard events in Javascript are broken - Codeflow

              6 users

              codeflow.org

              The venerable computer keyboard. You probably have one. In Javascript we can get keyboard events, but they are completely useless if you are differently-abled, if you try to make an accessible rich internet application or game or if you just have a different keyboard layout. The following blog post examines the technical barriers to make a web based game or web based rich client application access

              • テクノロジー
              • 2013/01/31 00:27
              • JavaScript
              • キーボード
              • event
              • *あとで
              • WebGL Deferred Irradiance Volumes - Codeflow

                5 users

                codeflow.org

                The problem of lighting 3D scenes in hardware accelerated rasterized rendering is really hard to solve. There are no 100% solutions, and what seems perfectly obvious to the uninitiated (light just bounces around) is extremely hard to do in practise. The following blog post is about one such method that I wanted to try out for a long time. GoodiesDemoYou can try the live demo. It is a bit demanding

                • 暮らし
                • 2012/08/26 10:46
                • WebGL rendering of solid trails - Codeflow

                  3 users

                  codeflow.org

                  If you need to render trails you can use particles. These give nice puffy effect. At other times you'd like to have a more well defined line (like say for missile trails). The following post shows one technique render trails with a single triangle strip optimized not to use too many triangles and does not lead to the puffy look of particles. ContentsDemoPicsSourceHow it worksCenter offsetSize Esti

                  • 暮らし
                  • 2012/08/08 19:34
                  • 3D
                  • WebGL GPU Landscaping and Erosion - Codeflow

                    3 users

                    codeflow.org

                    A while ago I finished playing From Dust which I enjoyed a lot. What impressed me about that game was the application of landscape changes by erosion. One drawback of the tool Lithosphere I wrote earlier is that it can't do any form of hydraulic erosion. I decided to write a test in WebGL to see if a few simple algorithms could be used to shape a landscape according to hydraulic erosion. ContentsD

                    • テクノロジー
                    • 2011/11/12 11:00
                    • WebGL
                    • CG
                    • 3D
                    • development
                    • programming
                    • web

                    このページはまだ
                    ブックマークされていません

                    このページを最初にブックマークしてみませんか?

                    『Main - Codeflow』の新着エントリーを見る

                    キーボードショートカット一覧

                    j次のブックマーク

                    k前のブックマーク

                    lあとで読む

                    eコメント一覧を開く

                    oページを開く

                    はてなブックマーク

                    • 総合
                    • 一般
                    • 世の中
                    • 政治と経済
                    • 暮らし
                    • 学び
                    • テクノロジー
                    • エンタメ
                    • アニメとゲーム
                    • おもしろ
                    • アプリ・拡張機能
                    • 開発ブログ
                    • ヘルプ
                    • お問い合わせ
                    • ガイドライン
                    • 利用規約
                    • プライバシーポリシー
                    • 利用者情報の外部送信について
                    • ガイドライン
                    • 利用規約
                    • プライバシーポリシー
                    • 利用者情報の外部送信について

                    公式Twitter

                    • 公式アカウント
                    • ホットエントリー

                    はてなのサービス

                    • はてなブログ
                    • はてなブログPro
                    • 人力検索はてな
                    • はてなブログ タグ
                    • はてなニュース
                    • ソレドコ
                    • App Storeからダウンロード
                    • Google Playで手に入れよう
                    Copyright © 2005-2025 Hatena. All Rights Reserved.
                    設定を変更しましたx