mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
More work on webgl
This commit is contained in:
parent
2ac40e7603
commit
00446e4f83
2 changed files with 30 additions and 0 deletions
|
|
@ -51,6 +51,10 @@ void main() {
|
|||
(let ((obj (active-attribute program n)))
|
||||
(format t "~A : Active Attribute - ~A ~A ~A"
|
||||
n (info-name obj) (info-size obj) (info-type obj))))
|
||||
(dotimes (n (parse-integer (program-parameter program :ACTIVE_UNIFORMS)))
|
||||
(let ((obj (active-uniform program n)))
|
||||
(format t "~A : Active Uniform - ~A ~A ~A"
|
||||
n (info-name obj) (info-size obj) (info-type obj))))
|
||||
(print (drawing-buffer-width gl))
|
||||
(print (drawing-buffer-height gl))
|
||||
(bind-buffer pos-buffer :ARRAY_BUFFER)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue