Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Molstar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michal Malý
Molstar
Commits
3bd7299a
Commit
3bd7299a
authored
6 years ago
by
Alexander Rose
Browse files
Options
Downloads
Patches
Plain Diff
cleaned up buffers
parent
ce86231f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/mol-gl/renderable/schema.ts
+3
-3
3 additions, 3 deletions
src/mol-gl/renderable/schema.ts
src/mol-gl/webgl/buffer.ts
+16
-17
16 additions, 17 deletions
src/mol-gl/webgl/buffer.ts
with
19 additions
and
20 deletions
src/mol-gl/renderable/schema.ts
+
3
−
3
View file @
3bd7299a
...
...
@@ -5,7 +5,7 @@
*/
import
{
ValueCell
}
from
'
mol-util
'
;
import
{
ArrayKind
,
Buffer
ItemSize
,
ElementsKind
,
AttributeValues
}
from
'
../webgl/buffer
'
;
import
{
ArrayKind
,
Attribute
ItemSize
,
ElementsKind
,
AttributeValues
}
from
'
../webgl/buffer
'
;
import
{
UniformKind
,
UniformValues
}
from
'
../webgl/uniform
'
;
import
{
DefineKind
,
DefineValues
}
from
'
../shader-code
'
;
import
{
Vec2
,
Vec3
,
Vec4
,
Mat3
,
Mat4
}
from
'
mol-math/linear-algebra
'
;
...
...
@@ -102,8 +102,8 @@ export function getValueVersions<T extends RenderableValues>(values: T) {
//
export
type
AttributeSpec
<
K
extends
ArrayKind
>
=
{
type
:
'
attribute
'
,
kind
:
K
,
itemSize
:
Buffer
ItemSize
,
divisor
:
number
}
export
function
AttributeSpec
<
K
extends
ArrayKind
>
(
kind
:
K
,
itemSize
:
Buffer
ItemSize
,
divisor
:
number
):
AttributeSpec
<
K
>
{
export
type
AttributeSpec
<
K
extends
ArrayKind
>
=
{
type
:
'
attribute
'
,
kind
:
K
,
itemSize
:
Attribute
ItemSize
,
divisor
:
number
}
export
function
AttributeSpec
<
K
extends
ArrayKind
>
(
kind
:
K
,
itemSize
:
Attribute
ItemSize
,
divisor
:
number
):
AttributeSpec
<
K
>
{
return
{
type
:
'
attribute
'
,
kind
,
itemSize
,
divisor
}
}
...
...
This diff is collapsed.
Click to expand it.
src/mol-gl/webgl/buffer.ts
+
16
−
17
View file @
3bd7299a
/**
* Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
* Copyright (c) 2018
-2019
mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
...
...
@@ -14,7 +14,7 @@ const getNextBufferId = idFactory()
export
type
UsageHint
=
'
static
'
|
'
dynamic
'
|
'
stream
'
export
type
DataType
=
'
uint8
'
|
'
int8
'
|
'
uint16
'
|
'
int16
'
|
'
uint32
'
|
'
int32
'
|
'
float32
'
export
type
BufferType
=
'
attribute
'
|
'
elements
'
export
type
BufferType
=
'
attribute
'
|
'
elements
'
|
'
uniform
'
export
type
DataTypeArrayType
=
{
'
uint8
'
:
Uint8Array
...
...
@@ -28,8 +28,6 @@ export type DataTypeArrayType = {
export
type
ArrayType
=
ValueOf
<
DataTypeArrayType
>
export
type
ArrayKind
=
keyof
DataTypeArrayType
export
type
BufferItemSize
=
1
|
2
|
3
|
4
|
16
export
function
getUsageHint
(
ctx
:
WebGLContext
,
usageHint
:
UsageHint
)
{
const
{
gl
}
=
ctx
switch
(
usageHint
)
{
...
...
@@ -90,8 +88,6 @@ export interface Buffer {
readonly
_dataType
:
number
readonly
_bpe
:
number
readonly
itemSize
:
number
readonly
itemCount
:
number
readonly
length
:
number
updateData
:
(
array
:
ArrayType
)
=>
void
...
...
@@ -99,7 +95,7 @@ export interface Buffer {
destroy
:
()
=>
void
}
export
function
createBuffer
(
ctx
:
WebGLContext
,
array
:
ArrayType
,
itemSize
:
BufferItemSize
,
usageHint
:
UsageHint
,
bufferType
:
BufferType
):
Buffer
{
export
function
createBuffer
(
ctx
:
WebGLContext
,
array
:
ArrayType
,
usageHint
:
UsageHint
,
bufferType
:
BufferType
):
Buffer
{
const
{
gl
}
=
ctx
const
_buffer
=
gl
.
createBuffer
()
if
(
_buffer
===
null
)
{
...
...
@@ -111,11 +107,10 @@ export function createBuffer(ctx: WebGLContext, array: ArrayType, itemSize: Buff
const
_dataType
=
dataTypeFromArray
(
ctx
,
array
)
const
_bpe
=
array
.
BYTES_PER_ELEMENT
const
_length
=
array
.
length
const
_itemCount
=
Math
.
floor
(
_length
/
itemSize
)
function
updateData
(
array
:
ArrayType
)
{
gl
.
bindBuffer
(
_bufferType
,
_buffer
);
(
gl
as
WebGLRenderingContext
)
.
bufferData
(
_bufferType
,
array
,
_usageHint
)
// TODO remove cast when webgl2 types are fixed
gl
.
bufferData
(
_bufferType
,
array
,
_usageHint
)
}
updateData
(
array
)
...
...
@@ -131,14 +126,12 @@ export function createBuffer(ctx: WebGLContext, array: ArrayType, itemSize: Buff
_dataType
,
_bpe
,
get
itemSize
()
{
return
itemSize
},
get
itemCount
()
{
return
_itemCount
},
get
length
()
{
return
_length
},
length
:
_length
,
updateData
,
updateSubData
:
(
array
:
ArrayType
,
offset
:
number
,
count
:
number
)
=>
{
gl
.
bindBuffer
(
_bufferType
,
_buffer
);
(
gl
as
WebGLRenderingContext
)
.
bufferSubData
(
_bufferType
,
offset
*
_bpe
,
array
.
subarray
(
offset
,
offset
+
count
))
// TODO remove cast when webgl2 types are fixed
gl
.
bufferSubData
(
_bufferType
,
offset
*
_bpe
,
array
.
subarray
(
offset
,
offset
+
count
))
},
destroy
:
()
=>
{
...
...
@@ -150,8 +143,12 @@ export function createBuffer(ctx: WebGLContext, array: ArrayType, itemSize: Buff
}
}
//
export
type
AttributeItemSize
=
1
|
2
|
3
|
4
|
16
export
type
AttributeDefs
=
{
[
k
:
string
]:
{
kind
:
ArrayKind
,
itemSize
:
Buffer
ItemSize
,
divisor
:
number
}
[
k
:
string
]:
{
kind
:
ArrayKind
,
itemSize
:
Attribute
ItemSize
,
divisor
:
number
}
}
export
type
AttributeValues
=
{
[
k
:
string
]:
ValueCell
<
ArrayType
>
}
export
type
AttributeBuffers
=
{
[
k
:
string
]:
AttributeBuffer
}
...
...
@@ -160,11 +157,11 @@ export interface AttributeBuffer extends Buffer {
bind
:
(
location
:
number
)
=>
void
}
export
function
createAttributeBuffer
<
T
extends
ArrayType
,
S
extends
Buffer
ItemSize
>
(
ctx
:
WebGLContext
,
array
:
ArrayType
,
itemSize
:
S
,
divisor
:
number
,
usageHint
:
UsageHint
=
'
dynamic
'
):
AttributeBuffer
{
export
function
createAttributeBuffer
<
T
extends
ArrayType
,
S
extends
Attribute
ItemSize
>
(
ctx
:
WebGLContext
,
array
:
T
,
itemSize
:
S
,
divisor
:
number
,
usageHint
:
UsageHint
=
'
dynamic
'
):
AttributeBuffer
{
const
{
gl
}
=
ctx
const
{
instancedArrays
}
=
ctx
.
extensions
const
buffer
=
createBuffer
(
ctx
,
array
,
itemSize
,
usageHint
,
'
attribute
'
)
const
buffer
=
createBuffer
(
ctx
,
array
,
usageHint
,
'
attribute
'
)
const
{
_buffer
,
_bufferType
,
_dataType
,
_bpe
}
=
buffer
return
{
...
...
@@ -197,6 +194,8 @@ export function createAttributeBuffers(ctx: WebGLContext, schema: RenderableSche
return
buffers
as
AttributeBuffers
}
//
export
type
ElementsType
=
Uint16Array
|
Uint32Array
export
type
ElementsKind
=
'
uint16
'
|
'
uint32
'
...
...
@@ -206,7 +205,7 @@ export interface ElementsBuffer extends Buffer {
export
function
createElementsBuffer
(
ctx
:
WebGLContext
,
array
:
ElementsType
,
usageHint
:
UsageHint
=
'
static
'
):
ElementsBuffer
{
const
{
gl
}
=
ctx
const
buffer
=
createBuffer
(
ctx
,
array
,
1
,
usageHint
,
'
elements
'
)
const
buffer
=
createBuffer
(
ctx
,
array
,
usageHint
,
'
elements
'
)
const
{
_buffer
}
=
buffer
return
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment