浏览代码

InterleavedBuffer: Update docs

Mugen87 7 年之前
父节点
当前提交
1030895d35
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      docs/api/core/InterleavedBuffer.html

+ 1 - 3
docs/api/core/InterleavedBuffer.html

@@ -11,9 +11,7 @@
 		<h1>[name]</h1>
 
 		<div class="desc">
-			"Interleaved" means that multiple types of data (position, color etc.) are packed into a single array buffer.
-			Organizing geometry data in this way improves memory locality. By keeping vertex data close together, it is more likely
-			that also caches (e.g. pre-transform vertex cache) store logically related data together. This leads to more cache hits and a better performance.
+			"Interleaved" means that multiple attributes, possibly of different types, (e.g., position, normal, uv, color) are packed into a single array buffer.
 			<br/><br/>
 			An introduction into interleaved arrays can be found here: [link:https://blog.tojicode.com/2011/05/interleaved-array-basics.html Interleaved array basics]
 		</div>