The 3bgl-shader Reference Manual

This is the 3bgl-shader Reference Manual, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 14:26:42 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 3bgl-shader

CL-hosted CL-like DSL for generating GLSL

Author

Bart Botta

License

MIT

Dependencies
  • alexandria (system).
  • bordeaux-threads (system).
  • cl-opengl (system).
Source

3bgl-shader.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 3bgl-shader/3bgl-shader.asd

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

ASDF Systems

3bgl-shader.


3.1.2 3bgl-shader/package.lisp

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Packages

3.1.3 3bgl-shader/ir.lisp

Dependency

package.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Public Interface

initialize-instance (method).

Internals

3.1.4 3bgl-shader/walker.lisp

Dependency

ir.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

3.1.5 3bgl-shader/types.lisp

Dependency

walker.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Public Interface
Internals

3.1.6 3bgl-shader/infer.lisp

Dependency

types.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

3.1.7 3bgl-shader/glsl-base.lisp

Dependency

infer.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Public Interface
Internals

3.1.8 3bgl-shader/cl-functions.lisp

Dependency

glsl-base.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

3.1.9 3bgl-shader/glsl.lisp

Dependency

cl-functions.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).


3.1.10 3bgl-shader/finalize-inference.lisp

Dependency

glsl.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

3.1.11 3bgl-shader/printer.lisp

Dependency

finalize-inference.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

3.1.12 3bgl-shader/compiler.lisp

Dependency

printer.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

3.1.13 3bgl-shader/api.lisp

Dependency

compiler.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Public Interface
Internals

3.1.14 3bgl-shader/old-utils.lisp

Dependency

api.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

3.1.15 3bgl-shader/utils.lisp

Dependency

old-utils.lisp (file).

Source

3bgl-shader.asd.

Parent Component

3bgl-shader (system).

Internals

4 Packages

Packages are listed by definition order.


4.1 3bgl-glsl

Source

package.lisp.

Use List

common-lisp.

Used By List

3bgl-glsl/cl.

Public Interface
Internals

4.2 3bgl-shaders

Source

package.lisp.

Use List

common-lisp.

Public Interface
Internals

4.3 3bgl-glsl/cl

Source

package.lisp.

Use List

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Special variables

Special Variable: *default-version*
Package

3bgl-shaders.

Source

api.lisp.

Special Variable: *modified-function-hook*

list of functions to call when shader functions are
modified. Passed a list of names of functions that have been modified. May be called multiple times for same function if a whole file using the 3bgl-glsl:defun macro is recompiled, so probably should store names and only update shader programs at next frame rather than updating programs directly from hook function.

Package

3bgl-shaders.

Source

api.lisp.


5.1.2 Macros

Macro: attribute (name type &rest args &key location)
Package

3bgl-glsl.

Source

api.lisp.

Macro: bind-interface (stage block-name interface-qualifier instance-name)
Package

3bgl-glsl.

Source

api.lisp.

Macro: defconstant (name value type)
Package

3bgl-glsl.

Source

api.lisp.

Macro: defmacro (name args &body body)
Package

3bgl-glsl.

Source

api.lisp.

Macro: defstruct (name &rest slots)
Package

3bgl-glsl.

Source

api.lisp.

Macro: defun (name args &body body)
Package

3bgl-glsl.

Source

api.lisp.

Macro: glsl-attribute (name type &rest args &key location)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: glsl-defconstant (name value type)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: glsl-defun (name args &body body)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: glsl-input (name type &rest args &key stage location)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: glsl-interface (name (&rest args &key in out uniform) &body slots)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: glsl-output (name type &rest args &key stage location)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: glsl-uniform (name type &rest args &key stage location)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: input (name type &rest args &key stage location qualifiers)
Package

3bgl-glsl.

Source

api.lisp.

Macro: interface (name (&rest args &key in out uniform buffer layout) &body slots)
Package

3bgl-glsl.

Source

api.lisp.

Macro: output (name type &rest args &key stage location qualifiers)
Package

3bgl-glsl.

Source

api.lisp.

Macro: shared (name type &rest args &key stage layout qualifiers &allow-other-keys)
Package

3bgl-glsl.

Source

api.lisp.

Macro: uniform (name type &rest args &key stage location internal layout qualifiers default &allow-other-keys)
Package

3bgl-glsl.

Source

api.lisp.


5.1.3 Ordinary functions

Function: compile-form (form)

Run first passes of compilation on specified form. (Wrap with PROGN to process multiple forms). Calls functions in *MODIFIED-FUNCTION-HOOK* with names of any functions whose definitions are possibly affected by compiling FORM (for example functions that call a function defined/updated by FORM, and the (re)defined function itself).

Package

3bgl-shaders.

Source

api.lisp.

Function: generate-stage (stage main &key backend version extensions expand-uniforms)

Generate GLSL shader for specified STAGE, using function named by MAIN as glsl ’main’ function. ROOT and all functions/variables/etc it depends on should already have been successfully compiled with COMPILE-FORM. STAGE is :VERTEX, :FRAGMENT, :GEOMETRY, :TESS-EVAL, :TESS-CONTROL, or :COMPUTE. VERSION specifies the value of the version pragma in generated shader, but doesn’t otherwise affect generated code currently. Returns a list of active uniforms in the
form (LISP-NAME "glslName" type . PROPERTIES) as second value, and a list of active attributes in same format as third value. (GL shader types like :VERTEX-SHADER are also accepted for STAGE)

For uniforms, PROPERTIES is a plist containing 0 or more of:

:COMPONENTS : (when EXPAND-UNIFORMS is true) for composite uniforms (structs, etc), a list containing a list of uniform name and slot names or array indices for each leaf uniform represented by the type, for example a struct uniform containing an array of structs might have entries that look like (foo bar 1 baz) corresponding to the uniform "foo.bar[1].baz".

Package

3bgl-shaders.

Source

api.lisp.


5.1.4 Generic functions

Generic Reader: stage (object)
Package

3bgl-shaders.

Methods
Reader Method: stage ((interface-stage-binding interface-stage-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

stage.

Generic Writer: (setf stage) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf stage) ((interface-stage-binding interface-stage-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

stage.


5.1.5 Standalone methods

Method: initialize-instance :after ((i constant-binding) &key &allow-other-keys)
Source

ir.lisp.

Writer Method: (setf modified) ((generic-type generic-type))

automatically generated writer method

Package

keyword.

Source

types.lisp.

Target Slot

modified.

Reader Method: modified ((generic-type generic-type))

automatically generated reader method

Package

keyword.

Source

types.lisp.

Target Slot

modified.


5.2 Internals


5.2.1 Special variables

Special Variable: *add-conflict-vars*

if bound, should be a hash of variable names to flag as conflicts when adding variable if value in hash is :CONFLICT.

Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *binding-types*
Package

3bgl-shaders.

Source

finalize-inference.lisp.

Special Variable: *bound-program*
Package

3bgl-shaders.

Source

utils.lisp.

Special Variable: *check-conflict-vars*

if bound, should be a hash of variable names to flag as conflicts when looking up variable. Names are flagged by setting value in hash to :CONFLICT.

Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *cl-environment*
Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *compiler-lock*
Package

3bgl-shaders.

Source

api.lisp.

Special Variable: *copy-constraints-hash*

used to track already copied constraints when copying type inference data

Package

3bgl-shaders.

Source

infer.lisp.

Special Variable: *current-function*

current function being compiled if any

Package

3bgl-glsl.

Source

glsl-base.lisp.

Special Variable: *current-function-local-types*
Package

3bgl-shaders.

Source

infer.lisp.

Special Variable: *current-function-return-type*
Package

3bgl-shaders.

Source

infer.lisp.

Special Variable: *current-function-stages*
Package

3bgl-shaders.

Source

infer.lisp.

Special Variable: *current-shader-stage*
Package

3bgl-shaders.

Source

types.lisp.

Special Variable: *default-backend*
Package

3bgl-shaders.

Source

api.lisp.

Special Variable: *default-extensions*
Package

3bgl-shaders.

Source

api.lisp.

Special Variable: *default-recompilation-callback*
Package

3bgl-shaders.

Source

utils.lisp.

Special Variable: *depth*
Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *environment*

current local environment

Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *function-stages*
Package

3bgl-shaders.

Source

compiler.lisp.

Special Variable: *global-environment*

current global environment

Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *glsl-base-environment*
Package

3bgl-glsl.

Source

walker.lisp.

Special Variable: *in-expression*
Package

3bgl-shaders.

Source

printer.lisp.

Special Variable: *inference-worklist*
Package

3bgl-shaders.

Source

infer.lisp.

Special Variable: *instantiated-overloads*
Package

3bgl-shaders.

Source

finalize-inference.lisp.

Special Variable: *interface-qualifier-order*
Package

3bgl-shaders.

Source

printer.lisp.

Special Variable: *internal-function-printers*
Package

3bgl-shaders.

Source

printer.lisp.

Special Variable: *known-declarations*
Package

3bgl-shaders.

Source

types.lisp.

Special Variable: *live-variables*
Package

3bgl-shaders.

Source

printer.lisp.

Special Variable: *max-depth*
Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *new-function-definitions*
Package

3bgl-shaders.

Source

compiler.lisp.

Special Variable: *new-global-definitions*
Package

3bgl-shaders.

Source

compiler.lisp.

Special Variable: *new-type-definitions*
Package

3bgl-shaders.

Source

compiler.lisp.

Special Variable: *package-environments*
Package

3bgl-shaders.

Source

walker.lisp.

Special Variable: *pprint-glsl*
Package

3bgl-shaders.

Source

printer.lisp.

Special Variable: *print-as-main*
Package

3bgl-shaders.

Source

printer.lisp.

Special Variable: *print-shaders*
Package

3bgl-shaders.

Source

utils.lisp.

Special Variable: *shader-program-hook*
Package

3bgl-shaders.

Source

utils.lisp.

Special Variable: *shader-type->stage*
Package

3bgl-shaders.

Source

api.lisp.

Special Variable: *stage-name-map*
Package

3bgl-shaders.

Source

utils.lisp.

Special Variable: *tree-shaker-current-object*
Package

3bgl-shaders.

Source

compiler.lisp.

Special Variable: *tree-shaker-hook*
Package

3bgl-shaders.

Source

compiler.lisp.

Special Variable: *tree-shaker-type-hook*
Package

3bgl-shaders.

Source

compiler.lisp.

Special Variable: *verbose*

enable debugging printouts

Package

3bgl-shaders.

Source

walker.lisp.


5.2.2 Macros

Macro: %glsl-compiler-macro (name lambda-list &body body)
Package

3bgl-shaders.

Source

types.lisp.

Macro: %glsl-macro (name lambda-list &body body)
Package

3bgl-shaders.

Source

types.lisp.

Macro: assert-statement ()
Package

3bgl-shaders.

Source

printer.lisp.

Macro: defclmacro (name lambda-list &body body)
Package

3bgl-shaders.

Source

walker.lisp.

Macro: defmethod2 (name (a b) &body body)
Package

3bgl-shaders.

Source

infer.lisp.

Macro: defprint (type (object) &body body)
Package

3bgl-shaders.

Source

printer.lisp.

Macro: defprint-binop (op c-op 0-arg 1-arg)
Package

3bgl-shaders.

Source

printer.lisp.

Macro: defprinti ((form &rest args) (&optional call) &body body)
Package

3bgl-shaders.

Source

printer.lisp.

Macro: defwalker (walker (form &rest args) &body body)
Package

3bgl-shaders.

Source

walker.lisp.

Macro: glsl-bind-interface (stage block-name interface-qualifier instance-name)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: with-environment-scope (() &body body)
Package

3bgl-shaders.

Source

walker.lisp.

Macro: with-lambda-list-vars ((function) &body body)
Package

3bgl-shaders.

Source

walker.lisp.

Macro: with-package-environment ((&optional symbol) &body body)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Macro: with-program ((program &key error-p) &body body)
Package

3bgl-shaders.

Source

utils.lisp.


5.2.3 Ordinary functions

Function: %reload-program (shader-program)
Package

3bgl-shaders.

Source

utils.lisp.

Function: %translate-name (x &key lc-underscore)
Package

3bgl-shaders.

Source

printer.lisp.

Function: add-compiler-macro (name lambda &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: add-concrete-type (name glsl-name &key env type)
Package

3bgl-shaders.

Source

types.lisp.

Function: add-function (name lambda-list body &key declarations docs env function-type binding)
Package

3bgl-shaders.

Source

walker.lisp.

Function: add-function-arguments (function &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: add-internal-function/full (name lambda-list type &key glsl-name cast)
Package

3bgl-shaders.

Source

cl-functions.lisp.

Function: add-internal-function/mat (name lambda-list count return-type &key glsl-name)
Package

3bgl-shaders.

Source

cl-functions.lisp.

Function: add-internal-function/s (name lambda-list arg-types return-type &key glsl-name cast)
Package

3bgl-shaders.

Source

cl-functions.lisp.

Function: add-macro (name lambda &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: add-symbol-macro (name expansion &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: add-unknown-function (name &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: add-variable (name init &key env binding type value-type)
Package

3bgl-shaders.

Source

walker.lisp.

Function: bind-interface (stage type interface-qualifier name &key internal glsl-name array layout-qualifier)
Package

3bgl-shaders.

Source

types.lisp.

Function: cache-binding (binding type)
Package

3bgl-shaders.

Source

finalize-inference.lisp.

Function: call-with-package-environment (thunk &key package)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Function: cast-to-boolean (type)
Package

3bgl-shaders.

Source

infer.lisp.

Function: check-locked (environment name)
Package

3bgl-shaders.

Source

walker.lisp.

Function: copy-unify-constraints (type unify-type &key cast name)
Package

3bgl-shaders.

Source

infer.lisp.

Function: debug-local-binding-type-data (hash)
Package

3bgl-shaders.

Source

infer.lisp.

Function: debug-type-names (type)
Package

3bgl-shaders.

Source

infer.lisp.

Function: default-env (name)
Package

3bgl-shaders.

Source

walker.lisp.

Function: ensure-compiled (program)
Package

3bgl-shaders.

Source

utils.lisp.

Function: ensure-package-environment (package)
Package

3bgl-shaders.

Source

walker.lisp.

Function: expand-buffers (buffers)
Package

3bgl-shaders.

Source

api.lisp.

Function: expand-extension-keyword (ext)
Package

3bgl-shaders.

Source

api.lisp.

Function: expand-optional-arg-type (o-a-t)
Package

3bgl-shaders.

Source

infer.lisp.

Function: expand-structs (structs)
Package

3bgl-shaders.

Source

api.lisp.

Function: expand-uniforms (uniforms expand)
Package

3bgl-shaders.

Source

api.lisp.

Function: filter-progn (x)
Package

3bgl-glsl.

Source

glsl-base.lisp.

Function: finalize-inference (root)
Package

3bgl-shaders.

Source

finalize-inference.lisp.

Function: flag-modified-constraint (constraint)
Package

3bgl-shaders.

Source

infer.lisp.

Function: flag-modified-type (type)
Package

3bgl-shaders.

Source

infer.lisp.

Function: flag-shader (shader-program function)
Package

3bgl-shaders.

Source

utils.lisp.

Function: flatten-function (function argument-types)
Package

3bgl-shaders.

Source

finalize-inference.lisp.

Function: function-signature-changed (fun)
Package

3bgl-shaders.

Source

ir.lisp.

Function: get-compiler-macro-binding (name &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: get-compiler-macro-function (name)
Package

3bgl-shaders.

Source

walker.lisp.

Function: get-function-binding (name &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: get-macro-function (name)
Package

3bgl-shaders.

Source

walker.lisp.

Function: get-only-hash-key (hash)
Package

3bgl-shaders.

Source

infer.lisp.

Function: get-symbol-macro (name)
Package

3bgl-shaders.

Source

walker.lisp.

Function: get-type-binding (name &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: get-variable-binding (name &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: global-env (name)
Package

3bgl-shaders.

Source

walker.lisp.

Function: in/out/uniform/attrib (qualifier %name type &key location internal stage index layout qualifiers default)
Package

3bgl-shaders.

Source

types.lisp.

Function: infer (function)
Package

3bgl-shaders.

Source

infer.lisp.

Function: infer-modified-functions (functions)
Package

3bgl-shaders.

Source

infer.lisp.

Function: lambda-list-vars (lambda-list)
Package

3bgl-shaders.

Source

walker.lisp.

Function: make-&key-expander (lambda-list)
Package

3bgl-shaders.

Source

walker.lisp.

Function: pprint-glsl (form)
Package

3bgl-shaders.

Source

printer.lisp.

Function: print-bindings/ret (name bindings ret)
Package

3bgl-shaders.

Source

infer.lisp.

Function: print-main-layout-qualifiers (q)
Package

3bgl-shaders.

Source

printer.lisp.

Function: reload-program (old v f &key errorp verbose geometry version)

compile program from shaders named by V and F, on success, delete program OLD and return new program, otherwise return OLD

Package

3bgl-shaders.

Source

old-utils.lisp.

Function: remove-function (name &key env)
Package

3bgl-shaders.

Source

walker.lisp.

Function: reset-program (shader-program)
Package

3bgl-shaders.

Source

utils.lisp.

Function: run-type-inference ()
Package

3bgl-shaders.

Source

infer.lisp.

Function: set-type (types &key constraint)
Package

3bgl-shaders.

Source

infer.lisp.

Function: shader-program (&rest r &key vertex fragment geometry tess-control tess-evaluation compute &allow-other-keys)
Package

3bgl-shaders.

Source

utils.lisp.

Function: sort-interface-qualifiers (q)
Package

3bgl-shaders.

Source

printer.lisp.

Function: topo-sort-dependencies (roots child-function)
Package

3bgl-shaders.

Source

infer.lisp.

Function: translate-interface-qualifiers (q)
Package

3bgl-shaders.

Source

printer.lisp.

Function: tree-shaker (root)
Package

3bgl-shaders.

Source

compiler.lisp.

Function: (setf uniform) (program &rest names-and-indices)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-index (program name)
Package

3bgl-shaders.

Source

old-utils.lisp.

Function: uniform-matrix (program name m)
Package

3bgl-shaders.

Source

old-utils.lisp.

Function: uniform-matrix-2fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-2x3-fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-2x4-fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-3fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-3x2-fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-3x4-fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-4fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-4x2-fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniform-matrix-4x3-fv (location matrices &optional transpose)
Package

3bgl-shaders.

Source

utils.lisp.

Function: uniformf (program name x &optional y z w)
Package

3bgl-shaders.

Source

old-utils.lisp.

Function: uniformfv (program name v)
Package

3bgl-shaders.

Source

old-utils.lisp.

Function: uniformi (program name value)
Package

3bgl-shaders.

Source

old-utils.lisp.

Function: update-dependencies (form)
Package

3bgl-shaders.

Source

compiler.lisp.

Function: vector->{} (x)
Package

3bgl-shaders.

Source

printer.lisp.

Function: walk-function-body (walker lambda-list body)
Package

3bgl-shaders.

Source

walker.lisp.


5.2.4 Generic functions

Generic Function: %print (object stream)
Package

3bgl-shaders.

Source

printer.lisp.

Methods
Method: %print ((o constant-binding) *standard-output*)
Method: %print ((o interface-binding) *standard-output*)
Method: %print ((o struct-type) *standard-output*)
Method: %print ((o for-loop) *standard-output*)
Method: %print ((o if-form) *standard-output*)
Method: %print ((o variable-write) *standard-output*)
Method: %print ((o variable-read) *standard-output*)
Method: %print ((o binding-scope) *standard-output*)
Method: %print ((o implicit-progn) *standard-output*)
Method: %print ((o progn-body) *standard-output*)
Method: %print ((o function-call) *standard-output*)
Method: %print ((o global-function) *standard-output*)
Method: %print ((o array-access) *standard-output*)
Method: %print ((o swizzle-access) *standard-output*)
Method: %print ((o slot-access) *standard-output*)
Method: %print ((o binding) *standard-output*)
Method: %print ((o initialized-binding) *standard-output*)
Method: %print ((o array-initialization) *standard-output*)
Method: %print ((o symbol) s)
Method: %print (object stream)
Generic Function: (setf %uniform) (program &rest names-and-indices)
Package

3bgl-shaders.

Methods
Method: (setf %uniform) ((program shader-program) &rest names-and-indices)
Source

utils.lisp.

Generic Function: add-constraint (ctype constraint)
Package

3bgl-shaders.

Methods
Method: add-constraint ((ctype ref-type) constraint)
Source

infer.lisp.

Method: add-constraint ((ctype optional-arg-type) constraint)
Source

infer.lisp.

Method: add-constraint ((ctype any-type) constraint)
Source

infer.lisp.

Method: add-constraint ((ctype constrained-type) constraint)
Source

infer.lisp.

Method: add-constraint (ctype constraint)
Source

infer.lisp.

Generic Reader: allow-casts (object)
Package

3bgl-shaders.

Methods
Reader Method: allow-casts ((binding binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

allow-casts.

Generic Writer: (setf allow-casts) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf allow-casts) ((binding binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

allow-casts.

Generic Reader: arg-type (object)
Package

3bgl-shaders.

Methods
Reader Method: arg-type ((optional-arg-type optional-arg-type))

automatically generated reader method

Source

infer.lisp.

Target Slot

arg-type.

Generic Writer: (setf arg-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf arg-type) ((optional-arg-type optional-arg-type))

automatically generated writer method

Source

infer.lisp.

Target Slot

arg-type.

Generic Reader: argument-environment (object)
Package

3bgl-shaders.

Methods
Reader Method: argument-environment ((array-initialization array-initialization))

automatically generated reader method

Source

ir.lisp.

Target Slot

argument-environment.

Reader Method: argument-environment ((function-call function-call))

automatically generated reader method

Source

ir.lisp.

Target Slot

argument-environment.

Generic Writer: (setf argument-environment) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf argument-environment) ((array-initialization array-initialization))

automatically generated writer method

Source

ir.lisp.

Target Slot

argument-environment.

Writer Method: (setf argument-environment) ((function-call function-call))

automatically generated writer method

Source

ir.lisp.

Target Slot

argument-environment.

Generic Reader: argument-types (object)
Package

3bgl-shaders.

Methods
Reader Method: argument-types ((global-function-constraint global-function-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

argument-types.

Reader Method: argument-types ((function-application function-application))

automatically generated reader method

Source

infer.lisp.

Target Slot

argument-types.

Generic Writer: (setf argument-types) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf argument-types) ((global-function-constraint global-function-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

argument-types.

Writer Method: (setf argument-types) ((function-application function-application))

automatically generated writer method

Source

infer.lisp.

Target Slot

argument-types.

Generic Reader: arguments (object)
Package

3bgl-shaders.

Methods
Reader Method: arguments ((array-initialization array-initialization))

automatically generated reader method

Source

ir.lisp.

Target Slot

arguments.

Reader Method: arguments ((function-call function-call))

automatically generated reader method

Source

ir.lisp.

Target Slot

arguments.

Generic Writer: (setf arguments) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf arguments) ((array-initialization array-initialization))

automatically generated writer method

Source

ir.lisp.

Target Slot

arguments.

Writer Method: (setf arguments) ((function-call function-call))

automatically generated writer method

Source

ir.lisp.

Target Slot

arguments.

Generic Reader: array-size (object)
Package

3bgl-shaders.

Methods
Reader Method: array-size ((interface-binding interface-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

array-size.

Reader Method: array-size ((interface-stage-binding interface-stage-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

array-size.

Reader Method: array-size ((array-type array-type))

automatically generated reader method

Source

types.lisp.

Target Slot

array-size.

Generic Writer: (setf array-size) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf array-size) ((interface-binding interface-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

array-size.

Writer Method: (setf array-size) ((interface-stage-binding interface-stage-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

array-size.

Writer Method: (setf array-size) ((array-type array-type))

automatically generated writer method

Source

types.lisp.

Target Slot

array-size.

Generic Function: array-suffix (x)
Package

3bgl-shaders.

Methods
Method: array-suffix ((x interface-stage-binding))
Source

printer.lisp.

Method: array-suffix ((x interface-binding))
Source

printer.lisp.

Method: array-suffix ((x array-type))
Source

printer.lisp.

Method: array-suffix (x)
Source

printer.lisp.

Generic Reader: base-type (object)
Package

3bgl-shaders.

Methods
Reader Method: base-type ((same-size-different-base-type-constraint same-size-different-base-type-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

base-type.

Reader Method: base-type ((array-type array-type))

automatically generated reader method

Source

types.lisp.

Target Slot

base-type.

Reader Method: base-type ((concrete-type concrete-type))

automatically generated reader method

Source

types.lisp.

Target Slot

base-type.

Generic Writer: (setf base-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf base-type) ((same-size-different-base-type-constraint same-size-different-base-type-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

base-type.

Writer Method: (setf base-type) ((array-type array-type))

automatically generated writer method

Source

types.lisp.

Target Slot

base-type.

Writer Method: (setf base-type) ((concrete-type concrete-type))

automatically generated writer method

Source

types.lisp.

Target Slot

base-type.

Generic Reader: binding (object)
Package

3bgl-shaders.

Methods
Reader Method: binding ((interface-stage-binding interface-stage-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

binding.

Reader Method: binding ((variable-write variable-write))

automatically generated reader method

Source

ir.lisp.

Target Slot

binding.

Reader Method: binding ((variable-read variable-read))

automatically generated reader method

Source

ir.lisp.

Target Slot

binding.

Reader Method: binding ((array-access array-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

binding.

Reader Method: binding ((swizzle-access swizzle-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

binding.

Reader Method: binding ((slot-access slot-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

binding.

Generic Writer: (setf binding) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf binding) ((interface-stage-binding interface-stage-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

binding.

Writer Method: (setf binding) ((variable-write variable-write))

automatically generated writer method

Source

ir.lisp.

Target Slot

binding.

Writer Method: (setf binding) ((variable-read variable-read))

automatically generated writer method

Source

ir.lisp.

Target Slot

binding.

Writer Method: (setf binding) ((array-access array-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

binding.

Writer Method: (setf binding) ((swizzle-access swizzle-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

binding.

Writer Method: (setf binding) ((slot-access slot-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

binding.

Generic Reader: bindings (object)
Package

3bgl-shaders.

Methods
Reader Method: bindings ((bindings bindings))

automatically generated reader method

Source

ir.lisp.

Target Slot

bindings.

Generic Writer: (setf bindings) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf bindings) ((bindings bindings))

automatically generated writer method

Source

ir.lisp.

Target Slot

bindings.

Generic Reader: bindings-used-by (object)
Package

3bgl-shaders.

Methods
Reader Method: bindings-used-by ((binding-with-dependencies binding-with-dependencies))

automatically generated reader method

Source

ir.lisp.

Target Slot

bindings-used-by.

Generic Reader: bindings-using (object)
Package

3bgl-shaders.

Methods
Reader Method: bindings-using ((binding-with-dependencies binding-with-dependencies))

automatically generated reader method

Source

ir.lisp.

Target Slot

bindings-using.

Generic Reader: body (object)
Package

3bgl-shaders.

Methods
Reader Method: body ((progn-body progn-body))

automatically generated reader method

Source

ir.lisp.

Target Slot

body.

Generic Writer: (setf body) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf body) ((progn-body progn-body))

automatically generated writer method

Source

ir.lisp.

Target Slot

body.

Generic Reader: called-function (object)
Package

3bgl-shaders.

Methods
Reader Method: called-function ((inference-call-site inference-call-site))

automatically generated reader method

Source

infer.lisp.

Target Slot

called-function.

Reader Method: called-function ((function-call function-call))

automatically generated reader method

Source

ir.lisp.

Target Slot

called-function.

Generic Writer: (setf called-function) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf called-function) ((inference-call-site inference-call-site))

automatically generated writer method

Source

infer.lisp.

Target Slot

called-function.

Writer Method: (setf called-function) ((function-call function-call))

automatically generated writer method

Source

ir.lisp.

Target Slot

called-function.

Generic Reader: cast-type (object)
Package

3bgl-shaders.

Methods
Reader Method: cast-type ((cast-constraint cast-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

cast-type.

Generic Writer: (setf cast-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf cast-type) ((cast-constraint cast-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

cast-type.

Generic Function: check-slot-stages (slot-access)
Package

3bgl-shaders.

Methods
Method: check-slot-stages (slot-access)
Source

compiler.lisp.

Generic Function: check-stages (interface-binding)
Package

3bgl-shaders.

Methods
Method: check-stages (interface-binding)
Source

compiler.lisp.

Generic Reader: compiler-macro-bindings (object)
Package

3bgl-shaders.

Methods
Reader Method: compiler-macro-bindings ((environment environment))

automatically generated reader method

Source

walker.lisp.

Target Slot

compiler-macro-bindings.

Generic Reader: condition-forms (object)
Package

3bgl-shaders.

Methods
Reader Method: condition-forms ((for-loop for-loop))

automatically generated reader method

Source

ir.lisp.

Target Slot

condition-forms.

Generic Writer: (setf condition-forms) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf condition-forms) ((for-loop for-loop))

automatically generated writer method

Source

ir.lisp.

Target Slot

condition-forms.

Generic Reader: conflicts (object)
Package

3bgl-shaders.

Methods
Reader Method: conflicts ((binding binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

conflicts.

Generic Writer: (setf conflicts) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf conflicts) ((binding binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

conflicts.

Generic Reader: constraints (object)
Package

3bgl-shaders.

Methods
Reader Method: constraints ((constrained-type constrained-type))

automatically generated reader method

Source

infer.lisp.

Target Slot

constraints.

Reader Method: constraints ((any-type any-type))

automatically generated reader method

Source

infer.lisp.

Target Slot

constraints.

Generic Writer: (setf constraints) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf constraints) ((constrained-type constrained-type))

automatically generated writer method

Source

infer.lisp.

Target Slot

constraints.

Writer Method: (setf constraints) ((any-type any-type))

automatically generated writer method

Source

infer.lisp.

Target Slot

constraints.

Generic Function: copy-constraints (x)
Package

3bgl-shaders.

Methods
Method: copy-constraints ((type any-type))
Source

infer.lisp.

Method: copy-constraints ((type optional-arg-type))
Source

infer.lisp.

Method: copy-constraints ((type constrained-type))
Source

infer.lisp.

Method: copy-constraints ((type ref-type))
Source

infer.lisp.

Method: copy-constraints ((hash hash-table))
Source

infer.lisp.

Method: copy-constraints ((type null))
Source

infer.lisp.

Method: copy-constraints ((type generic-type))
Source

infer.lisp.

Method: copy-constraints ((constraint same-base-type-different-size-constraint))
Source

infer.lisp.

Method: copy-constraints ((constraint same-size-different-base-type-constraint))
Source

infer.lisp.

Method: copy-constraints ((constraint cast-constraint))
Source

infer.lisp.

Method: copy-constraints ((constraint scalar-type-of-constraint))
Source

infer.lisp.

Method: copy-constraints ((constraint same-type-or-scalar-constraint))
Source

infer.lisp.

Method: copy-constraints ((constraint global-function-constraint))
Source

infer.lisp.

Method: copy-constraints ((constraint variable-arity-function-application))
Source

infer.lisp.

Method: copy-constraints ((constraint function-application))
Source

infer.lisp.

Method: copy-constraints :around (x)
Source

infer.lisp.

Generic Reader: ctype (object)
Package

3bgl-shaders.

Methods
Reader Method: ctype ((ctype/other-constraint ctype/other-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

ctype.

Generic Writer: (setf ctype) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf ctype) ((ctype/other-constraint ctype/other-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

ctype.

Generic Reader: declarations (object)
Package

3bgl-shaders.

Methods
Reader Method: declarations ((function-binding function-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

declarations.

Reader Method: declarations ((binding-scope binding-scope))

automatically generated reader method

Source

ir.lisp.

Target Slot

declarations.

Generic Writer: (setf declarations) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf declarations) ((function-binding function-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

declarations.

Writer Method: (setf declarations) ((binding-scope binding-scope))

automatically generated writer method

Source

ir.lisp.

Target Slot

declarations.

Generic Reader: declared-type (object)
Package

3bgl-shaders.

Methods
Reader Method: declared-type ((function-binding function-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

declared-type.

Reader Method: declared-type ((binding binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

declared-type.

Generic Writer: (setf declared-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf declared-type) ((function-binding function-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

declared-type.

Writer Method: (setf declared-type) ((binding binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

declared-type.

Generic Reader: default (object)
Package

3bgl-shaders.

Methods
Reader Method: default ((interface-stage-binding interface-stage-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

default.

Generic Writer: (setf default) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf default) ((interface-stage-binding interface-stage-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

default.

Generic Reader: dirty (object)
Package

3bgl-shaders.

Methods
Reader Method: dirty ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

dirty.

Generic Function: dump-constraint (c)
Package

3bgl-shaders.

Methods
Method: dump-constraint ((c array-access-constraint))
Source

infer.lisp.

Method: dump-constraint ((c scalar-type-of-constraint))
Source

infer.lisp.

Method: dump-constraint ((c same-type-or-scalar-constraint))
Source

infer.lisp.

Method: dump-constraint ((c same-base-type-different-size-constraint))
Source

infer.lisp.

Method: dump-constraint ((c ctype/other-constraint))
Source

infer.lisp.

Method: dump-constraint ((c global-function-constraint))
Source

infer.lisp.

Method: dump-constraint ((c function-application))
Source

infer.lisp.

Method: dump-constraint ((c variable-arity-function-application))
Source

infer.lisp.

Method: dump-constraint ((c cast-constraint))
Source

infer.lisp.

Generic Reader: else-form (object)
Package

3bgl-shaders.

Methods
Reader Method: else-form ((if-form if-form))

automatically generated reader method

Source

ir.lisp.

Target Slot

else-form.

Generic Writer: (setf else-form) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf else-form) ((if-form if-form))

automatically generated writer method

Source

ir.lisp.

Target Slot

else-form.

Generic Reader: environment (object)
Package

3bgl-shaders.

Methods
Reader Method: environment ((unknown-function-binding unknown-function-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

environment.

Generic Writer: (setf environment) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf environment) ((unknown-function-binding unknown-function-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

environment.

Generic Reader: equiv (object)
Package

3bgl-shaders.

Methods
Reader Method: equiv ((ref-type ref-type))

automatically generated reader method

Source

infer.lisp.

Target Slot

equiv.

Generic Writer: (setf equiv) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf equiv) ((ref-type ref-type))

automatically generated writer method

Source

infer.lisp.

Target Slot

equiv.

Generic Function: expand-uniform-slots (prefix b)
Package

3bgl-shaders.

Methods
Method: expand-uniform-slots (prefix (type array-type))
Source

api.lisp.

Method: expand-uniform-slots (prefix (type concrete-type))
Source

api.lisp.

Method: expand-uniform-slots (prefix (type struct-type))
Source

api.lisp.

Method: expand-uniform-slots (prefix (b binding))
Source

api.lisp.

Generic Reader: expander (object)
Package

3bgl-shaders.

Methods
Reader Method: expander ((macro-definition macro-definition))

automatically generated reader method

Source

ir.lisp.

Target Slot

expander.

Reader Method: expander ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

expander.

Generic Writer: (setf expander) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf expander) ((macro-definition macro-definition))

automatically generated writer method

Source

ir.lisp.

Target Slot

expander.

Writer Method: (setf expander) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

expander.

Generic Reader: expansion (object)
Package

3bgl-shaders.

Methods
Reader Method: expansion ((symbol-macro symbol-macro))

automatically generated reader method

Source

ir.lisp.

Target Slot

expansion.

Generic Writer: (setf expansion) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf expansion) ((symbol-macro symbol-macro))

automatically generated writer method

Source

ir.lisp.

Target Slot

expansion.

Generic Reader: explicit-casts (object)
Package

3bgl-shaders.

Methods
Reader Method: explicit-casts ((concrete-type concrete-type))

automatically generated reader method

Source

types.lisp.

Target Slot

explicit-casts.

Generic Writer: (setf explicit-casts) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf explicit-casts) ((concrete-type concrete-type))

automatically generated writer method

Source

types.lisp.

Target Slot

explicit-casts.

Generic Reader: expression (object)
Package

3bgl-shaders.

Methods
Reader Method: expression ((macro-definition macro-definition))

automatically generated reader method

Source

ir.lisp.

Target Slot

expression.

Generic Writer: (setf expression) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf expression) ((macro-definition macro-definition))

automatically generated writer method

Source

ir.lisp.

Target Slot

expression.

Generic Reader: field (object)
Package

3bgl-shaders.

Methods
Reader Method: field ((swizzle-access swizzle-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

field.

Reader Method: field ((slot-access slot-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

field.

Generic Writer: (setf field) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf field) ((swizzle-access swizzle-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

field.

Writer Method: (setf field) ((slot-access slot-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

field.

Generic Reader: final-binding-type-cache (object)
Package

3bgl-shaders.

Methods
Reader Method: final-binding-type-cache ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

final-binding-type-cache.

Generic Writer: (setf final-binding-type-cache) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf final-binding-type-cache) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

final-binding-type-cache.

Generic Function: flatten-type (type &optional force-type)
Package

3bgl-shaders.

Methods
Method: flatten-type ((type ref-type) &optional force-type)
Source

finalize-inference.lisp.

Method: flatten-type ((type struct-type) &optional force-type)
Source

finalize-inference.lisp.

Method: flatten-type ((type array-type) &optional force-type)
Source

finalize-inference.lisp.

Method: flatten-type ((type constrained-type) &optional force-type)
Source

finalize-inference.lisp.

Method: flatten-type ((type any-type) &optional force-type)
Source

finalize-inference.lisp.

Method: flatten-type ((type concrete-type) &optional force-type)
Source

finalize-inference.lisp.

Generic Function: flatten-types (types)
Package

3bgl-shaders.

Methods
Method: flatten-types ((types ctype/other-constraint))
Source

infer.lisp.

Method: flatten-types ((types hash-table))
Source

infer.lisp.

Method: flatten-types ((types cons))
Source

infer.lisp.

Method: flatten-types ((types constrained-type))
Source

infer.lisp.

Method: flatten-types ((types any-type))
Source

infer.lisp.

Method: flatten-types ((types ref-type))
Source

infer.lisp.

Generic Reader: function-bindings (object)
Package

3bgl-shaders.

Methods
Reader Method: function-bindings ((environment environment))

automatically generated reader method

Source

walker.lisp.

Target Slot

function-bindings.

Generic Reader: function-types (object)
Package

3bgl-shaders.

Methods
Reader Method: function-types ((function-application function-application))

automatically generated reader method

Source

infer.lisp.

Target Slot

function-types.

Generic Writer: (setf function-types) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf function-types) ((function-application function-application))

automatically generated writer method

Source

infer.lisp.

Target Slot

function-types.

Generic Reader: function-types-by-arity (object)
Package

3bgl-shaders.

Methods
Reader Method: function-types-by-arity ((variable-arity-function-application variable-arity-function-application))

automatically generated reader method

Source

infer.lisp.

Target Slot

function-types-by-arity.

Generic Writer: (setf function-types-by-arity) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf function-types-by-arity) ((variable-arity-function-application variable-arity-function-application))

automatically generated writer method

Source

infer.lisp.

Target Slot

function-types-by-arity.

Generic Function: generate-output (objects inferred-types backend &key version extensions &allow-other-keys)
Package

3bgl-shaders.

Methods
Method: generate-output (objects inferred-types (backend (eql :glsl)) &key version extensions &allow-other-keys)
Source

api.lisp.

Generic Function: get-concrete-type (type)
Package

3bgl-shaders.

Methods
Method: get-concrete-type ((type constrained-type))
Source

finalize-inference.lisp.

Method: get-concrete-type ((type any-type))
Source

finalize-inference.lisp.

Method: get-concrete-type ((type struct-type))
Source

finalize-inference.lisp.

Method: get-concrete-type ((type concrete-type))
Source

finalize-inference.lisp.

Method: get-concrete-type ((type ref-type))
Source

finalize-inference.lisp.

Generic Function: get-equiv-type (type)
Package

3bgl-shaders.

Methods
Method: get-equiv-type ((type ref-type))
Source

infer.lisp.

Method: get-equiv-type (type)
Source

infer.lisp.

Generic Reader: global-function (object)
Package

3bgl-shaders.

Methods
Reader Method: global-function ((global-function-constraint global-function-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

function.

Generic Writer: (setf global-function) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf global-function) ((global-function-constraint global-function-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

function.

Generic Reader: glsl-name (object)
Package

3bgl-shaders.

Methods
Reader Method: glsl-name ((generic-type generic-type))

automatically generated reader method

Source

types.lisp.

Target Slot

glsl-name.

Reader Method: glsl-name ((function-binding function-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

glsl-name.

Reader Method: glsl-name ((binding binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

glsl-name.

Generic Writer: (setf glsl-name) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf glsl-name) ((generic-type generic-type))

automatically generated writer method

Source

types.lisp.

Target Slot

glsl-name.

Writer Method: (setf glsl-name) ((function-binding function-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

glsl-name.

Writer Method: (setf glsl-name) ((binding binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

glsl-name.

Generic Function: implicit-casts-from (object)
Package

3bgl-shaders.

Methods
Method: implicit-casts-from (s)
Source

types.lisp.

Reader Method: implicit-casts-from ((concrete-type concrete-type))

automatically generated reader method

Source

types.lisp.

Target Slot

implicit-casts-from.

Generic Writer: (setf implicit-casts-from) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf implicit-casts-from) ((concrete-type concrete-type))

automatically generated writer method

Source

types.lisp.

Target Slot

implicit-casts-from.

Generic Function: implicit-casts-to (object)
Package

3bgl-shaders.

Methods
Method: implicit-casts-to (s)
Source

types.lisp.

Reader Method: implicit-casts-to ((concrete-type concrete-type))

automatically generated reader method

Source

types.lisp.

Target Slot

implicit-casts-to.

Generic Writer: (setf implicit-casts-to) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf implicit-casts-to) ((concrete-type concrete-type))

automatically generated writer method

Source

types.lisp.

Target Slot

implicit-casts-to.

Generic Reader: in-type (object)
Package

3bgl-shaders.

Methods
Reader Method: in-type ((cast-constraint cast-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

in-type.

Generic Writer: (setf in-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf in-type) ((cast-constraint cast-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

in-type.

Generic Reader: index (object)
Package

3bgl-shaders.

Methods
Reader Method: index ((array-access array-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

index.

Generic Writer: (setf index) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf index) ((array-access array-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

index.

Generic Reader: init-forms (object)
Package

3bgl-shaders.

Methods
Reader Method: init-forms ((for-loop for-loop))

automatically generated reader method

Source

ir.lisp.

Target Slot

init-forms.

Generic Writer: (setf init-forms) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf init-forms) ((for-loop for-loop))

automatically generated writer method

Source

ir.lisp.

Target Slot

init-forms.

Generic Reader: initial-value-form (object)
Package

3bgl-shaders.

Methods
Reader Method: initial-value-form ((initialized-binding initialized-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

initial-value-form.

Generic Writer: (setf initial-value-form) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf initial-value-form) ((initialized-binding initialized-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

initial-value-form.

Generic Function: integral-type (type)
Package

3bgl-shaders.

Methods
Method: integral-type ((type constrained-type))
Source

printer.lisp.

Method: integral-type ((type concrete-type))
Source

printer.lisp.

Generic Reader: interface-block (object)
Package

3bgl-shaders.

Methods
Reader Method: interface-block ((interface-stage-binding interface-stage-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

interface-block.

Generic Writer: (setf interface-block) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf interface-block) ((interface-stage-binding interface-stage-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

interface-block.

Generic Reader: interface-qualifier (object)
Package

3bgl-shaders.

Methods
Reader Method: interface-qualifier ((interface-stage-binding interface-stage-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

interface-qualifier.

Generic Writer: (setf interface-qualifier) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf interface-qualifier) ((interface-stage-binding interface-stage-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

interface-qualifier.

Generic Reader: internal (object)
Package

3bgl-shaders.

Methods
Reader Method: internal ((interface-binding interface-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

internal.

Reader Method: internal ((generic-type generic-type))

automatically generated reader method

Source

types.lisp.

Target Slot

internal.

Reader Method: internal ((constant-binding constant-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

internal.

Generic Writer: (setf internal) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf internal) ((interface-binding interface-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

internal.

Writer Method: (setf internal) ((generic-type generic-type))

automatically generated writer method

Source

types.lisp.

Target Slot

internal.

Writer Method: (setf internal) ((constant-binding constant-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

internal.

Generic Function: is-type (a b)
Package

3bgl-shaders.

Methods
Method: is-type (b (a null))
Source

infer.lisp.

Method: is-type ((a null) b)
Source

infer.lisp.

Generic Reader: lambda-list (object)
Package

3bgl-shaders.

Methods
Reader Method: lambda-list ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

lambda-list.

Generic Writer: (setf lambda-list) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf lambda-list) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

lambda-list.

Generic Reader: layout-qualifier (object)
Package

3bgl-shaders.

Methods
Reader Method: layout-qualifier ((interface-stage-binding interface-stage-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

layout-qualifier.

Generic Writer: (setf layout-qualifier) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf layout-qualifier) ((interface-stage-binding interface-stage-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

layout-qualifier.

Generic Reader: layout-qualifiers (object)
Package

3bgl-shaders.

Methods
Reader Method: layout-qualifiers ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

layout-qualifiers.

Generic Writer: (setf layout-qualifiers) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf layout-qualifiers) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

layout-qualifiers.

Generic Reader: live-uniforms (object)
Package

3bgl-shaders.

Methods
Reader Method: live-uniforms ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

live-uniforms.

Generic Writer: (setf live-uniforms) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf live-uniforms) ((shader-program shader-program))

automatically generated writer method

Source

utils.lisp.

Target Slot

live-uniforms.

Generic Reader: local-binding-type-data (object)
Package

3bgl-shaders.

Methods
Reader Method: local-binding-type-data ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

local-binding-type-data.

Generic Writer: (setf local-binding-type-data) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf local-binding-type-data) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

local-binding-type-data.

Generic Reader: locked (object)
Package

3bgl-shaders.

Methods
Reader Method: locked ((environment environment))

automatically generated reader method

Source

walker.lisp.

Target Slot

locked.

Generic Writer: (setf locked) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf locked) ((environment environment))

automatically generated writer method

Source

walker.lisp.

Target Slot

locked.

Generic Reader: max-arity (object)
Package

3bgl-shaders.

Methods
Reader Method: max-arity ((variable-arity-function-application variable-arity-function-application))

automatically generated reader method

Source

infer.lisp.

Target Slot

max-arity.

Generic Writer: (setf max-arity) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf max-arity) ((variable-arity-function-application variable-arity-function-application))

automatically generated writer method

Source

infer.lisp.

Target Slot

max-arity.

Generic Reader: min-arity (object)
Package

3bgl-shaders.

Methods
Reader Method: min-arity ((variable-arity-function-application variable-arity-function-application))

automatically generated reader method

Source

infer.lisp.

Target Slot

min-arity.

Generic Writer: (setf min-arity) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf min-arity) ((variable-arity-function-application variable-arity-function-application))

automatically generated writer method

Source

infer.lisp.

Target Slot

min-arity.

Generic Reader: min-size (object)
Package

3bgl-shaders.

Methods
Reader Method: min-size ((array-access-constraint array-access-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

min-size.

Reader Method: min-size ((same-base-type-different-size-constraint same-base-type-different-size-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

min-size.

Reader Method: min-size ((swizzle-access swizzle-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

min-size.

Generic Writer: (setf min-size) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf min-size) ((array-access-constraint array-access-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

min-size.

Writer Method: (setf min-size) ((same-base-type-different-size-constraint same-base-type-different-size-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

min-size.

Writer Method: (setf min-size) ((swizzle-access swizzle-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

min-size.

Generic Reader: modified (object)
Package

3bgl-shaders.

Methods
Reader Method: modified ((update-calls update-calls))

automatically generated reader method

Source

compiler.lisp.

Target Slot

modified.

Reader Method: modified ((constraint constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

modified.

Generic Writer: (setf modified) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf modified) ((constraint constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

modified.

Generic Function: name (o)
Package

3bgl-shaders.

Methods
Reader Method: name ((cast-constraint cast-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

name.

Reader Method: name ((global-function-constraint global-function-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

name.

Reader Method: name ((function-application function-application))

automatically generated reader method

Source

infer.lisp.

Target Slot

name.

Reader Method: name ((generic-type generic-type))

automatically generated reader method

Source

types.lisp.

Target Slot

name.

Reader Method: name ((environment environment))

automatically generated reader method

Source

walker.lisp.

Target Slot

name.

Method: name ((o function-call))
Source

ir.lisp.

Method: name ((o variable-write))
Source

ir.lisp.

Method: name ((o variable-read))
Source

ir.lisp.

Method: name ((o array-access))
Source

ir.lisp.

Method: name ((o swizzle-access))
Source

ir.lisp.

Method: name ((o slot-access))
Source

ir.lisp.

Reader Method: name ((function-binding function-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

name.

Reader Method: name ((binding binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

name.

Method: name (o)
Source

ir.lisp.

Generic Writer: (setf name) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf name) ((cast-constraint cast-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

name.

Writer Method: (setf name) ((global-function-constraint global-function-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

name.

Writer Method: (setf name) ((function-application function-application))

automatically generated writer method

Source

infer.lisp.

Target Slot

name.

Writer Method: (setf name) ((generic-type generic-type))

automatically generated writer method

Source

types.lisp.

Target Slot

name.

Writer Method: (setf name) ((function-binding function-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

name.

Writer Method: (setf name) ((binding binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

name.

Generic Reader: name-map (object)
Package

3bgl-shaders.

Methods
Reader Method: name-map ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

name-map.

Generic Reader: old-lambda-list (object)
Package

3bgl-shaders.

Methods
Reader Method: old-lambda-list ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

old-lambda-list.

Generic Writer: (setf old-lambda-list) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf old-lambda-list) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

old-lambda-list.

Generic Reader: other-type (object)
Package

3bgl-shaders.

Methods
Reader Method: other-type ((ctype/other-constraint ctype/other-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

other-type.

Generic Writer: (setf other-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf other-type) ((ctype/other-constraint ctype/other-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

other-type.

Generic Reader: out-size (object)
Package

3bgl-shaders.

Methods
Reader Method: out-size ((same-base-type-different-size-constraint same-base-type-different-size-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

out-size.

Generic Writer: (setf out-size) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf out-size) ((same-base-type-different-size-constraint same-base-type-different-size-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

out-size.

Generic Reader: out-type (object)
Package

3bgl-shaders.

Methods
Reader Method: out-type ((cast-constraint cast-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

out-type.

Generic Writer: (setf out-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf out-type) ((cast-constraint cast-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

out-type.

Generic Reader: parent-scope (object)
Package

3bgl-shaders.

Methods
Reader Method: parent-scope ((environment environment))

automatically generated reader method

Source

walker.lisp.

Target Slot

parent-scope.

Generic Function: process-type-declarations-for-scope (scope)
Package

3bgl-shaders.

Methods
Method: process-type-declarations-for-scope (scope)
Source

types.lisp.

Generic Reader: program (object)
Package

3bgl-shaders.

Methods
Reader Method: program ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

program.

Generic Reader: qualifiers (object)
Package

3bgl-shaders.

Methods
Reader Method: qualifiers ((binding binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

qualifiers.

Generic Writer: (setf qualifiers) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf qualifiers) ((binding binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

qualifiers.

Generic Reader: raw-arguments (object)
Package

3bgl-shaders.

Methods
Reader Method: raw-arguments ((array-initialization array-initialization))

automatically generated reader method

Source

ir.lisp.

Target Slot

raw-arguments.

Reader Method: raw-arguments ((function-call function-call))

automatically generated reader method

Source

ir.lisp.

Target Slot

raw-arguments.

Generic Writer: (setf raw-arguments) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf raw-arguments) ((array-initialization array-initialization))

automatically generated writer method

Source

ir.lisp.

Target Slot

raw-arguments.

Writer Method: (setf raw-arguments) ((function-call function-call))

automatically generated writer method

Source

ir.lisp.

Target Slot

raw-arguments.

Generic Reader: recompilation-callbacks (object)
Package

3bgl-shaders.

Methods
Reader Method: recompilation-callbacks ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

recompilation-callbacks.

Generic Writer: (setf recompilation-callbacks) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf recompilation-callbacks) ((shader-program shader-program))

automatically generated writer method

Source

utils.lisp.

Target Slot

recompilation-callbacks.

Generic Reader: return-type (object)
Package

3bgl-shaders.

Methods
Reader Method: return-type ((global-function-constraint global-function-constraint))

automatically generated reader method

Source

infer.lisp.

Target Slot

return-type.

Reader Method: return-type ((function-application function-application))

automatically generated reader method

Source

infer.lisp.

Target Slot

return-type.

Generic Writer: (setf return-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf return-type) ((global-function-constraint global-function-constraint))

automatically generated writer method

Source

infer.lisp.

Target Slot

return-type.

Writer Method: (setf return-type) ((function-application function-application))

automatically generated writer method

Source

infer.lisp.

Target Slot

return-type.

Generic Reader: scalar/vector-set (object)
Package

3bgl-shaders.

Methods
Reader Method: scalar/vector-set ((concrete-type concrete-type))

automatically generated reader method

Source

types.lisp.

Target Slot

scalar/vector-set.

Generic Writer: (setf scalar/vector-set) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf scalar/vector-set) ((concrete-type concrete-type))

automatically generated writer method

Source

types.lisp.

Target Slot

scalar/vector-set.

Generic Reader: scalar/vector-size (object)
Package

3bgl-shaders.

Methods
Reader Method: scalar/vector-size ((concrete-type concrete-type))

automatically generated reader method

Source

types.lisp.

Target Slot

scalar/vector-size.

Generic Writer: (setf scalar/vector-size) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf scalar/vector-size) ((concrete-type concrete-type))

automatically generated writer method

Source

types.lisp.

Target Slot

scalar/vector-size.

Generic Reader: ssbos (object)
Package

3bgl-shaders.

Methods
Reader Method: ssbos ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

ssbos.

Generic Function: stage-binding (binding)
Package

3bgl-shaders.

Methods
Method: stage-binding ((binding interface-binding))
Source

types.lisp.

Method: stage-binding (binding)
Source

types.lisp.

Generic Reader: stage-bindings (object)
Package

3bgl-shaders.

Methods
Reader Method: stage-bindings ((interface-binding interface-binding))

automatically generated reader method

Source

types.lisp.

Target Slot

stage-bindings.

Generic Writer: (setf stage-bindings) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf stage-bindings) ((interface-binding interface-binding))

automatically generated writer method

Source

types.lisp.

Target Slot

stage-bindings.

Generic Reader: stages (object)
Package

3bgl-shaders.

Methods
Reader Method: stages ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

stages.

Generic Reader: step-forms (object)
Package

3bgl-shaders.

Methods
Reader Method: step-forms ((for-loop for-loop))

automatically generated reader method

Source

ir.lisp.

Target Slot

step-forms.

Generic Writer: (setf step-forms) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf step-forms) ((for-loop for-loop))

automatically generated writer method

Source

ir.lisp.

Target Slot

step-forms.

Generic Reader: structs (object)
Package

3bgl-shaders.

Methods
Reader Method: structs ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

structs.

Generic Reader: test-form (object)
Package

3bgl-shaders.

Methods
Reader Method: test-form ((if-form if-form))

automatically generated reader method

Source

ir.lisp.

Target Slot

test-form.

Generic Writer: (setf test-form) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf test-form) ((if-form if-form))

automatically generated writer method

Source

ir.lisp.

Target Slot

test-form.

Generic Reader: then-form (object)
Package

3bgl-shaders.

Methods
Reader Method: then-form ((if-form if-form))

automatically generated reader method

Source

ir.lisp.

Target Slot

then-form.

Generic Writer: (setf then-form) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf then-form) ((if-form if-form))

automatically generated writer method

Source

ir.lisp.

Target Slot

then-form.

Generic Function: translate-name (x)
Package

3bgl-shaders.

Methods
Method: translate-name ((x variable-read))
Source

printer.lisp.

Method: translate-name ((x array-type))
Source

printer.lisp.

Method: translate-name ((x generic-type))
Source

printer.lisp.

Method: translate-name ((x interface-stage-binding))
Source

printer.lisp.

Method: translate-name ((x array-access))
Source

printer.lisp.

Method: translate-name ((x swizzle-access))
Source

printer.lisp.

Method: translate-name ((x slot-access))
Source

printer.lisp.

Method: translate-name ((x function-binding))
Source

printer.lisp.

Method: translate-name ((x binding))
Source

printer.lisp.

Method: translate-name (x)
Source

printer.lisp.

Generic Function: translate-slot-name (x b)
Package

3bgl-shaders.

Methods
Method: translate-slot-name (x (b interface-stage-binding))
Source

printer.lisp.

Method: translate-slot-name (x (b interface-binding))
Source

printer.lisp.

Method: translate-slot-name (x (b array-access))
Source

printer.lisp.

Method: translate-slot-name (x (b variable-read))
Source

printer.lisp.

Method: translate-slot-name (x b)
Source

printer.lisp.

Generic Function: translate-type (type)
Package

3bgl-shaders.

Methods
Method: translate-type ((type struct-type))
Source

printer.lisp.

Method: translate-type ((type array-type))
Source

printer.lisp.

Method: translate-type ((type generic-type))
Source

printer.lisp.

Method: translate-type ((type constrained-type))
Source

printer.lisp.

Method: translate-type ((type concrete-type))
Source

printer.lisp.

Method: translate-type ((type ref-type))
Source

printer.lisp.

Method: translate-type ((type any-type))
Source

printer.lisp.

Method: translate-type (type)
Source

printer.lisp.

Generic Reader: type-inference-state (object)
Package

3bgl-shaders.

Methods
Reader Method: type-inference-state ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

type-inference-state.

Generic Writer: (setf type-inference-state) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf type-inference-state) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

type-inference-state.

Generic Function: types (object)
Package

3bgl-shaders.

Methods
Method: types ((type concrete-type))
Source

infer.lisp.

Reader Method: types ((constrained-type constrained-type))

automatically generated reader method

Source

infer.lisp.

Target Slot

types.

Reader Method: types ((environment environment))

automatically generated reader method

Source

walker.lisp.

Target Slot

types.

Generic Writer: (setf types) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf types) ((constrained-type constrained-type))

automatically generated writer method

Source

infer.lisp.

Target Slot

types.

Generic Function: unifiable-types-p (x type)
Package

3bgl-shaders.

Methods
Method: unifiable-types-p (b (a symbol))
Source

infer.lisp.

Method: unifiable-types-p ((a symbol) b)
Source

infer.lisp.

Method: unifiable-types-p ((x constrained-type) (type constrained-type))
Source

infer.lisp.

Method: unifiable-types-p ((a ref-type) (b ref-type))
Source

infer.lisp.

Method: unifiable-types-p (b (a ref-type))
Source

infer.lisp.

Method: unifiable-types-p ((a ref-type) b)
Source

infer.lisp.

Method: unifiable-types-p ((b constrained-type) (a generic-type))
Source

infer.lisp.

Method: unifiable-types-p ((a generic-type) (b constrained-type))
Source

infer.lisp.

Method: unifiable-types-p ((b generic-type) (a generic-type))
Source

infer.lisp.

Method: unifiable-types-p (b (a generic-type))
Source

infer.lisp.

Method: unifiable-types-p ((a generic-type) b)
Source

infer.lisp.

Method: unifiable-types-p (b (a any-type))
Source

infer.lisp.

Method: unifiable-types-p ((a any-type) b)
Source

infer.lisp.

Method: unifiable-types-p ((b generic-type) (a null))
Source

infer.lisp.

Method: unifiable-types-p ((a null) (b generic-type))
Source

infer.lisp.

Method: unifiable-types-p ((b any-type) (a null))
Source

infer.lisp.

Method: unifiable-types-p ((a null) (b any-type))
Source

infer.lisp.

Method: unifiable-types-p ((a null) (b null))
Source

infer.lisp.

Method: unifiable-types-p (x type)
Source

infer.lisp.

Generic Function: uniform (object &rest names-and-indices)
Package

3bgl-shaders.

Source

utils.lisp.

Methods
Method: uniform ((program shader-program) &rest names-and-indices)
Generic Reader: uniforms (object)
Package

3bgl-shaders.

Methods
Reader Method: uniforms ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

uniforms.

Generic Function: unify (a b)
Package

3bgl-shaders.

Methods
Method: unify (b (a ref-type))
Source

infer.lisp.

Method: unify ((a ref-type) b)
Source

infer.lisp.

Method: unify ((b null) (a constrained-type))
Source

infer.lisp.

Method: unify ((a constrained-type) (b null))
Source

infer.lisp.

Method: unify ((b any-type) (a constrained-type))
Source

infer.lisp.

Method: unify ((a constrained-type) (b any-type))
Source

infer.lisp.

Method: unify ((b struct-type) (a any-type))
Source

infer.lisp.

Method: unify ((a any-type) (b struct-type))
Source

infer.lisp.

Method: unify ((b array-initialization) (a array-type))
Source

infer.lisp.

Method: unify ((a array-type) (b array-initialization))
Source

infer.lisp.

Method: unify ((b array-type) (a any-type))
Source

infer.lisp.

Method: unify ((a any-type) (b array-type))
Source

infer.lisp.

Method: unify ((b concrete-type) (a any-type))
Source

infer.lisp.

Method: unify ((a any-type) (b concrete-type))
Source

infer.lisp.

Method: unify ((b concrete-type) (a constrained-type))
Source

infer.lisp.

Method: unify ((a constrained-type) (b concrete-type))
Source

infer.lisp.

Method: unify ((b generic-type) (a constrained-type))
Source

infer.lisp.

Method: unify ((a constrained-type) (b generic-type))
Source

infer.lisp.

Method: unify ((a constrained-type) (b constrained-type))
Source

infer.lisp.

Method: unify ((a any-type) (b any-type))
Source

infer.lisp.

Method: unify (a b)
Source

infer.lisp.

Generic Function: update-constraint (constraint)
Package

3bgl-shaders.

Methods
Method: update-constraint ((constraint same-base-type-different-size-constraint))
Source

infer.lisp.

Method: update-constraint ((constraint same-size-different-base-type-constraint))
Source

infer.lisp.

Method: update-constraint ((constraint scalar-type-of-constraint))
Source

infer.lisp.

Method: update-constraint ((constraint same-type-or-scalar-constraint))
Source

infer.lisp.

Method: update-constraint ((constraint cast-constraint))
Source

infer.lisp.

Method: update-constraint ((constraint function-application))
Source

infer.lisp.

Method: update-constraint ((constraint variable-arity-function-application))
Source

infer.lisp.

Generic Function: use-program (program)
Package

3bgl-shaders.

Methods
Method: use-program ((program shader-program))
Source

utils.lisp.

Generic Reader: valid-stages (object)
Package

3bgl-shaders.

Methods
Reader Method: valid-stages ((function-binding-function function-binding-function))

automatically generated reader method

Source

ir.lisp.

Target Slot

valid-stages.

Generic Writer: (setf valid-stages) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf valid-stages) ((function-binding-function function-binding-function))

automatically generated writer method

Source

ir.lisp.

Target Slot

valid-stages.

Generic Reader: value (object)
Package

3bgl-shaders.

Methods
Reader Method: value ((variable-write variable-write))

automatically generated reader method

Source

ir.lisp.

Target Slot

value.

Generic Writer: (setf value) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf value) ((variable-write variable-write))

automatically generated writer method

Source

ir.lisp.

Target Slot

value.

Generic Function: value-type (object)
Package

3bgl-shaders.

Methods
Method: value-type ((binding interface-stage-binding))
Source

types.lisp.

Method: value-type ((binding generic-type))
Source

types.lisp.

Method: value-type ((binding interface-binding))
Source

types.lisp.

Method: value-type ((o variable-read))
Source

ir.lisp.

Reader Method: value-type ((array-access array-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

value-type.

Reader Method: value-type ((swizzle-access swizzle-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

value-type.

Reader Method: value-type ((slot-access slot-access))

automatically generated reader method

Source

ir.lisp.

Target Slot

value-type.

Reader Method: value-type ((function-binding function-binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

value-type.

Reader Method: value-type ((binding binding))

automatically generated reader method

Source

ir.lisp.

Target Slot

value-type.

Generic Writer: (setf value-type) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf value-type) ((array-access array-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((swizzle-access swizzle-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((slot-access slot-access))

automatically generated writer method

Source

ir.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((function-binding function-binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((binding binding))

automatically generated writer method

Source

ir.lisp.

Target Slot

value-type.

Generic Reader: variable-bindings (object)
Package

3bgl-shaders.

Methods
Reader Method: variable-bindings ((environment environment))

automatically generated reader method

Source

walker.lisp.

Target Slot

variable-bindings.

Generic Reader: version (object)
Package

3bgl-shaders.

Methods
Reader Method: version ((shader-program shader-program))

automatically generated reader method

Source

utils.lisp.

Target Slot

version.

Generic Writer: (setf version) (object)
Package

3bgl-shaders.

Methods
Writer Method: (setf version) ((shader-program shader-program))

automatically generated writer method

Source

utils.lisp.

Target Slot

version.

Generic Function: walk (form walker)
Package

3bgl-shaders.

Source

walker.lisp.

Methods
Method: walk ((form function-call) (walker update-calls))
Source

compiler.lisp.

Method: walk ((form for-loop) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form array-type) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form struct-type) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form interface-stage-binding) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form interface-binding) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form constant-binding) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form binding) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form local-variable) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form swizzle-access) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form variable-write) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form variable-read) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form slot-access) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form concrete-type) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form (eql :*)) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form (eql t)) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form function-call) (walker tree-shaker))
Source

compiler.lisp.

Method: walk ((form cons) (walker tree-shaker))
Source

compiler.lisp.

Method: walk :around (form (walker extract-functions))
Source

compiler.lisp.

Method: walk (form (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk (form (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form global-function) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form binding-scope) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form implicit-progn) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form explicit-progn) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form float) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form integer) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form function-argument) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form constant-binding) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form interface-stage-binding) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form interface-binding) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form binding) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form array-type) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form local-variable) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form variable-write) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form variable-read) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form function-call) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form slot-access) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form array-access) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form swizzle-access) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form for-loop) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk ((form if-form) (walker infer-build-constraints))
Source

infer.lisp.

Method: walk :around (form walker)
Method: walk (form (walker cl-walker))
Method: walk ((form cons) walker)
Method: walk (form walker)
Method: walk ((form if-form) walker)
Source

ir.lisp.

Method: walk ((form variable-write) walker)
Source

ir.lisp.

Method: walk ((form variable-read) walker)
Source

ir.lisp.

Method: walk ((form slot-access) walker)
Source

ir.lisp.

Method: walk ((form array-access) walker)
Source

ir.lisp.

Method: walk ((form bindings) walker)
Source

ir.lisp.

Method: walk ((form progn-body) walker)
Source

ir.lisp.

Method: walk ((form function-call) walker)
Source

ir.lisp.

Method: walk ((form array-initialization) walker)
Source

ir.lisp.

Method: walk ((form initialized-binding) walker)
Source

ir.lisp.

Generic Function: walk-cons (car cdr walker)
Package

3bgl-shaders.

Source

walker.lisp.

Methods
Method: walk-cons ((car0 (eql defstruct)) cdr1 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car752 (eql 3bgl-glsl:bind-interface)) cdr753 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car658 (eql 3bgl-glsl:output)) cdr659 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car564 (eql 3bgl-glsl:input)) cdr565 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car470 (eql 3bgl-glsl:uniform)) cdr471 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car376 (eql 3bgl-glsl:attribute)) cdr377 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car282 (eql 3bgl-glsl::%defconstant)) cdr283 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car188 (eql 3bgl-glsl:defconstant)) cdr189 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car94 (eql defparameter)) cdr95 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car0 (eql defconstant)) cdr1 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons ((car0 (eql defun)) cdr1 (walker extract-functions))
Source

compiler.lisp.

Method: walk-cons (car cdr (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql 3bgl-glsl::%for)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql if)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql setq)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql progn)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql let*)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql let)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql 3bgl-glsl::%defconstant)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql defconstant)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons ((car0 (eql defparameter)) cdr1 (walker glsl-walker))
Source

glsl-base.lisp.

Method: walk-cons :around (car cdr walker)
Method: walk-cons (car cdr (walker cl-walker))
Method: walk-cons ((car0 (eql labels)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql flet)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql let*)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql let)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql quote)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql progv)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql unwind-protect)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql multiple-value-prog1)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql multiple-value-call)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql function)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql go)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql tagbody)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql macrolet)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql symbol-macrolet)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql locally)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql eval-when)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql setq)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql load-time-value)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql throw)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql catch)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql return-from)) cdr1 (walker cl-walker))
Method: walk-cons ((car0 (eql block)) cdr1 (walker cl-walker))
Method: walk-cons (car cdr walker)

5.2.5 Conditions

Condition: incomplete-dependent
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

inference-failure.

Condition: inference-failure
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

condition.

Direct subclasses

incomplete-dependent.


5.2.6 Classes

Class: aggregate-type
Package

3bgl-shaders.

Source

types.lisp.

Direct superclasses
Direct subclasses
Class: any-type
Package

3bgl-shaders.

Source

infer.lisp.

Direct methods
Direct slots
Slot: constraints
Initform

(make-hash-table)

Initargs

:constraints

Readers

constraints.

Writers

(setf constraints).

Class: array-access
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

place.

Direct methods
Direct slots
Slot: binding
Initargs

:binding

Readers

binding.

Writers

(setf binding).

Slot: index
Initargs

:index

Readers

index.

Writers

(setf index).

Slot: value-type
Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Class: array-access-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

ctype/other-constraint.

Direct methods
Direct slots
Slot: min-size
Initargs

:min-size

Readers

min-size.

Writers

(setf min-size).

Class: array-initialization
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

array-type.

Direct methods
Direct slots
Slot: arguments
Initargs

:arguments

Readers

arguments.

Writers

(setf arguments).

Slot: raw-arguments
Initargs

:raw-arguments

Readers

raw-arguments.

Writers

(setf raw-arguments).

Slot: argument-environment
Initargs

:argument-environment

Readers

argument-environment.

Writers

(setf argument-environment).

Class: array-type
Package

3bgl-shaders.

Source

types.lisp.

Direct superclasses

generic-type.

Direct subclasses

array-initialization.

Direct methods
Direct slots
Slot: base-type
Initargs

:base-type

Readers

base-type.

Writers

(setf base-type).

Slot: array-size
Initargs

:array-size

Readers

array-size.

Writers

(setf array-size).

Class: binding
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

place.

Direct subclasses
Direct methods
Direct slots
Slot: name
Initargs

:name

Readers

name.

Writers

(setf name).

Slot: glsl-name
Initargs

:glsl-name

Readers

glsl-name.

Writers

(setf glsl-name).

Slot: value-type
Initform

t

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: allow-casts
Initform

t

Initargs

:allow-casts

Readers

allow-casts.

Writers

(setf allow-casts).

Slot: declared-type
Initform

t

Initargs

:declared-type

Readers

declared-type.

Writers

(setf declared-type).

Slot: qualifiers
Readers

qualifiers.

Writers

(setf qualifiers).

Slot: conflicts
Readers

conflicts.

Writers

(setf conflicts).

Class: binding-scope
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: declarations
Initargs

:declarations

Readers

declarations.

Writers

(setf declarations).

Class: binding-with-dependencies
Package

3bgl-shaders.

Source

ir.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: bindings-used-by
Initform

(make-hash-table)

Readers

bindings-used-by.

Writers

This slot is read-only.

Slot: bindings-using
Initform

(make-hash-table)

Readers

bindings-using.

Writers

This slot is read-only.

Class: bindings
Package

3bgl-shaders.

Source

ir.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: bindings
Initargs

:bindings

Readers

bindings.

Writers

(setf bindings).

Class: builtin-function
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Class: cast-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

constraint.

Direct methods
Direct slots
Slot: cast-type
Initform

:implicit

Initargs

:cast-type

Readers

cast-type.

Writers

(setf cast-type).

Slot: in-type
Initargs

:in

Readers

in-type.

Writers

(setf in-type).

Slot: out-type
Initargs

:out

Readers

out-type.

Writers

(setf out-type).

Slot: name
Initargs

:name

Readers

name.

Writers

(setf name).

Class: cl-walker
Package

3bgl-shaders.

Source

walker.lisp.

Direct superclasses

walker.

Direct subclasses

glsl-walker.

Direct methods
Class: concrete-type
Package

3bgl-shaders.

Source

types.lisp.

Direct superclasses

generic-type.

Direct methods
Direct slots
Slot: implicit-casts-to
Initargs

:casts-to

Readers

implicit-casts-to.

Writers

(setf implicit-casts-to).

Slot: implicit-casts-from
Initargs

:casts-from

Readers

implicit-casts-from.

Writers

(setf implicit-casts-from).

Slot: explicit-casts
Initargs

:explicit-casts

Readers

explicit-casts.

Writers

(setf explicit-casts).

Slot: scalar/vector-size
Initargs

:scalar/vector-size

Readers

scalar/vector-size.

Writers

(setf scalar/vector-size).

Slot: scalar/vector-set
Initargs

:scalar/vector-set

Readers

scalar/vector-set.

Writers

(setf scalar/vector-set).

Slot: base-type
Initargs

:base-type

Readers

base-type.

Writers

(setf base-type).

Class: constant-binding
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: internal
Readers

internal.

Writers

(setf internal).

Class: constrained-type
Package

3bgl-shaders.

Source

infer.lisp.

Direct methods
Direct slots
Slot: types
Initform

(make-hash-table)

Initargs

:types

Readers

types.

Writers

(setf types).

Slot: constraints
Initform

(make-hash-table)

Initargs

:constraints

Readers

constraints.

Writers

(setf constraints).

Class: constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: modified
Readers

modified.

Writers

(setf modified).

Class: ctype/other-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

constraint.

Direct subclasses
Direct methods
Direct slots
Slot: ctype
Initargs

:ctype

Readers

ctype.

Writers

(setf ctype).

Slot: other-type
Initargs

:other-type

Readers

other-type.

Writers

(setf other-type).

Class: environment
Package

3bgl-shaders.

Source

walker.lisp.

Direct methods
Direct slots
Slot: parent-scope
Initargs

:parent

Readers

parent-scope.

Writers

This slot is read-only.

Slot: function-bindings
Initform

(make-hash-table)

Readers

function-bindings.

Writers

This slot is read-only.

Slot: compiler-macro-bindings
Initform

(make-hash-table)

Readers

compiler-macro-bindings.

Writers

This slot is read-only.

Slot: variable-bindings
Initform

(make-hash-table)

Readers

variable-bindings.

Writers

This slot is read-only.

Slot: types
Initform

(make-hash-table)

Readers

types.

Writers

This slot is read-only.

Slot: locked
Readers

locked.

Writers

(setf locked).

Slot: name
Initargs

:name

Readers

name.

Writers

This slot is read-only.

Class: explicit-progn
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

progn-body.

Direct methods

walk.

Class: extract-functions
Package

3bgl-shaders.

Source

compiler.lisp.

Direct superclasses

glsl-walker.

Direct methods
Class: finalize
Package

3bgl-shaders.

Source

finalize-inference.lisp.

Direct superclasses

glsl-walker.

Class: for-loop
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

implicit-progn.

Direct methods
Direct slots
Slot: init-forms
Initargs

:init

Readers

init-forms.

Writers

(setf init-forms).

Slot: condition-forms
Initargs

:while

Readers

condition-forms.

Writers

(setf condition-forms).

Slot: step-forms
Initargs

:step

Readers

step-forms.

Writers

(setf step-forms).

Class: function-application
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

constraint.

Direct subclasses

variable-arity-function-application.

Direct methods
Direct slots
Slot: argument-types
Readers

argument-types.

Writers

(setf argument-types).

Slot: return-type
Initargs

:return-type

Readers

return-type.

Writers

(setf return-type).

Slot: function-types
Initargs

:function-types

Readers

function-types.

Writers

(setf function-types).

Slot: name
Initargs

:name

Readers

name.

Writers

(setf name).

Class: function-argument
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

local-variable.

Direct methods

walk.

Class: function-binding
Package

3bgl-shaders.

Source

ir.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: name
Initargs

:name

Readers

name.

Writers

(setf name).

Slot: glsl-name
Initargs

:glsl-name

Readers

glsl-name.

Writers

(setf glsl-name).

Slot: declarations
Initargs

:declarations

Readers

declarations.

Writers

(setf declarations).

Slot: docs
Initargs

:docs

Slot: value-type
Initform

t

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: declared-type
Initform

t

Initargs

:declared-type

Readers

declared-type.

Writers

(setf declared-type).

Class: function-binding-function
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Direct subclasses
Direct methods
Direct slots
Slot: type-inference-state
Initargs

:type-inference-state

Readers

type-inference-state.

Writers

(setf type-inference-state).

Slot: valid-stages
Initform

t

Readers

valid-stages.

Writers

(setf valid-stages).

Slot: local-binding-type-data
Initform

(make-hash-table)

Readers

local-binding-type-data.

Writers

(setf local-binding-type-data).

Slot: final-binding-type-cache
Initform

(make-hash-table :test (quote equal))

Readers

final-binding-type-cache.

Writers

(setf final-binding-type-cache).

Slot: lambda-list
Initargs

:lambda-list

Readers

lambda-list.

Writers

(setf lambda-list).

Slot: old-lambda-list
Initform

t

Readers

old-lambda-list.

Writers

(setf old-lambda-list).

Slot: expander
Initform

(function identity)

Initargs

:expander

Readers

expander.

Writers

(setf expander).

Slot: layout-qualifiers
Initform

(make-hash-table)

Readers

layout-qualifiers.

Writers

(setf layout-qualifiers).

Class: function-call
Package

3bgl-shaders.

Source

ir.lisp.

Direct methods
Direct slots
Slot: called-function
Initargs

:function

Readers

called-function.

Writers

(setf called-function).

Slot: arguments
Initargs

:arguments

Readers

arguments.

Writers

(setf arguments).

Slot: raw-arguments
Initargs

:raw-arguments

Readers

raw-arguments.

Writers

(setf raw-arguments).

Slot: argument-environment
Initargs

:argument-environment

Readers

argument-environment.

Writers

(setf argument-environment).

Class: generic-type
Package

3bgl-shaders.

Source

types.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: name
Initargs

:name

Readers

name.

Writers

(setf name).

Slot: glsl-name
Initargs

:glsl-name

Readers

glsl-name.

Writers

(setf glsl-name).

Slot: internal
Initargs

:internal

Readers

internal.

Writers

(setf internal).

Slot: modified
Readers

modified.

Writers

(setf modified).

Class: global-function
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Direct methods
Class: global-function-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

constraint.

Direct methods
Direct slots
Slot: name
Initargs

:name

Readers

name.

Writers

(setf name).

Slot: function
Package

common-lisp.

Initargs

:function

Readers

global-function.

Writers

(setf global-function).

Slot: argument-types
Readers

argument-types.

Writers

(setf argument-types).

Slot: return-type
Initargs

:return-type

Readers

return-type.

Writers

(setf return-type).

Class: global-variable
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Class: glsl-walker
Package

3bgl-glsl.

Source

glsl-base.lisp.

Direct superclasses

cl-walker.

Direct subclasses
Direct methods
Class: if-form
Package

3bgl-shaders.

Source

ir.lisp.

Direct methods
Direct slots
Slot: test-form
Initargs

:test

Readers

test-form.

Writers

(setf test-form).

Slot: then-form
Initargs

:then

Readers

then-form.

Writers

(setf then-form).

Slot: else-form
Initargs

:else

Readers

else-form.

Writers

(setf else-form).

Class: implicit-progn
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

progn-body.

Direct subclasses
Direct methods
Class: infer-build-constraints
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

glsl-walker.

Direct methods
Class: inference-call-site
Package

3bgl-shaders.

Source

infer.lisp.

Direct methods
Direct slots
Slot: called-function
Initargs

:called-function

Readers

called-function.

Writers

(setf called-function).

Class: initialized-binding
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

binding.

Direct subclasses
Direct methods
Direct slots
Slot: initial-value-form
Initargs

:init

Readers

initial-value-form.

Writers

(setf initial-value-form).

Class: interface-binding
Package

3bgl-shaders.

Source

types.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: stage-bindings
Initargs

:stage-bindings

Readers

stage-bindings.

Writers

(setf stage-bindings).

Slot: internal
Initargs

:internal

Readers

internal.

Writers

(setf internal).

Slot: array-size
Initargs

:array-size

Readers

array-size.

Writers

(setf array-size).

Class: interface-stage-binding
Package

3bgl-shaders.

Source

types.lisp.

Direct superclasses

place.

Direct methods
Direct slots
Slot: binding
Initargs

:binding

Readers

binding.

Writers

(setf binding).

Slot: stage
Initargs

:stage

Readers

stage.

Writers

(setf stage).

Slot: interface-qualifier
Initargs

:interface-qualifier

Readers

interface-qualifier.

Writers

(setf interface-qualifier).

Slot: layout-qualifier
Initargs

:layout-qualifier

Readers

layout-qualifier.

Writers

(setf layout-qualifier).

Slot: interface-block
Initargs

:interface-block

Readers

interface-block.

Writers

(setf interface-block).

Slot: array-size
Initargs

:array-size

Readers

array-size.

Writers

(setf array-size).

Slot: default
Initargs

:default

Readers

default.

Writers

(setf default).

Class: interface-type
Package

3bgl-shaders.

Source

types.lisp.

Direct superclasses

aggregate-type.

Class: internal-function
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Direct Default Initargs
InitargValue
:type-inference-statet
Class: local-variable
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

variable-binding.

Direct subclasses

function-argument.

Direct methods
Class: macro-definition
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

function-binding.

Direct methods
Direct slots
Slot: expression
Initargs

:expression

Readers

expression.

Writers

(setf expression).

Slot: expander
Readers

expander.

Writers

(setf expander).

Class: optional-arg-type
Package

3bgl-shaders.

Source

infer.lisp.

Direct methods
Direct slots
Slot: arg-type
Initargs

:arg-type

Readers

arg-type.

Writers

(setf arg-type).

Class: place
Package

3bgl-shaders.

Source

ir.lisp.

Direct subclasses
Class: progn-body
Package

3bgl-shaders.

Source

ir.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: body
Initargs

:body

Readers

body.

Writers

(setf body).

Class: ref-type
Package

3bgl-shaders.

Source

infer.lisp.

Direct methods
Direct slots
Slot: equiv
Initargs

:equiv

Readers

equiv.

Writers

(setf equiv).

Class: same-base-type-different-size-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

ctype/other-constraint.

Direct methods
Direct slots
Slot: out-size
Initargs

:out-size

Readers

out-size.

Writers

(setf out-size).

Slot: min-size
Initargs

:min-size

Readers

min-size.

Writers

(setf min-size).

Class: same-size-different-base-type-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

ctype/other-constraint.

Direct methods
Direct slots
Slot: base-type
Initargs

:base-type

Readers

base-type.

Writers

(setf base-type).

Class: same-type-or-scalar-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

ctype/other-constraint.

Direct methods
Class: scalar-type-of-constraint
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

ctype/other-constraint.

Direct methods
Class: shader-program
Package

3bgl-shaders.

Source

utils.lisp.

Direct methods
Direct slots
Slot: program
Readers

program.

Writers

This slot is read-only.

Slot: stages
Initform

(make-hash-table)

Readers

stages.

Writers

This slot is read-only.

Slot: dirty
Initform

(make-hash-table)

Readers

dirty.

Writers

This slot is read-only.

Slot: uniforms
Initform

(make-hash-table)

Readers

uniforms.

Writers

This slot is read-only.

Slot: ssbos
Initform

(make-hash-table)

Readers

ssbos.

Writers

This slot is read-only.

Slot: structs
Initform

(make-hash-table)

Readers

structs.

Writers

This slot is read-only.

Slot: live-uniforms
Readers

live-uniforms.

Writers

(setf live-uniforms).

Slot: name-map
Initform

(make-hash-table :test (quote equal))

Readers

name-map.

Writers

This slot is read-only.

Slot: version
Initform

3bgl-shaders:*default-version*

Initargs

:version

Readers

version.

Writers

(setf version).

Slot: recompilation-callbacks
Initform

3bgl-shaders::*default-recompilation-callback*

Readers

recompilation-callbacks.

Writers

(setf recompilation-callbacks).

Class: slot-access
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

place.

Direct methods
Direct slots
Slot: binding
Initargs

:binding

Readers

binding.

Writers

(setf binding).

Slot: field
Initargs

:field

Readers

field.

Writers

(setf field).

Slot: value-type
Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Class: struct-type
Package

3bgl-shaders.

Source

types.lisp.

Direct superclasses
Direct methods
Class: swizzle-access
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

place.

Direct methods
Direct slots
Slot: binding
Initargs

:binding

Readers

binding.

Writers

(setf binding).

Slot: field
Initargs

:field

Readers

field.

Writers

(setf field).

Slot: min-size
Initargs

:min-size

Readers

min-size.

Writers

(setf min-size).

Slot: value-type
Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Class: symbol-macro
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

binding.

Direct methods
Direct slots
Slot: expansion
Initargs

:expansion

Readers

expansion.

Writers

(setf expansion).

Class: tree-shaker
Package

3bgl-shaders.

Source

compiler.lisp.

Direct methods
Class: unknown-function-binding
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: environment
Initargs

:environment

Readers

environment.

Writers

(setf environment).

Class: update-calls
Package

3bgl-shaders.

Source

compiler.lisp.

Direct superclasses

glsl-walker.

Direct methods
Direct slots
Slot: modified
Initargs

:modified

Readers

modified.

Writers

This slot is read-only.

Class: variable-arity-function-application
Package

3bgl-shaders.

Source

infer.lisp.

Direct superclasses

function-application.

Direct methods
Direct slots
Slot: min-arity
Initform

0

Initargs

:min-arity

Readers

min-arity.

Writers

(setf min-arity).

Slot: max-arity
Initform

0

Initargs

:max-arity

Readers

max-arity.

Writers

(setf max-arity).

Slot: function-types-by-arity
Initargs

:function-types-by-arity

Readers

function-types-by-arity.

Writers

(setf function-types-by-arity).

Class: variable-binding
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

initialized-binding.

Direct subclasses
Class: variable-read
Package

3bgl-shaders.

Source

ir.lisp.

Direct superclasses

place.

Direct methods
Direct slots
Slot: binding
Initargs

:binding

Readers

binding.

Writers

(setf binding).

Class: variable-write
Package

3bgl-shaders.

Source

ir.lisp.

Direct methods
Direct slots
Slot: binding
Initargs

:binding

Readers

binding.

Writers

(setf binding).

Slot: value
Initargs

:value

Readers

value.

Writers

(setf value).

Class: walker
Package

3bgl-shaders.

Source

walker.lisp.

Direct subclasses

cl-walker.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   %   (  
A   B   C   D   E   F   G   I   L   M   N   O   P   Q   R   S   T   U   V   W  
Index Entry  Section

%
%glsl-compiler-macro: Private macros
%glsl-macro: Private macros
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%print: Private generic functions
%reload-program: Private ordinary functions
%translate-name: Private ordinary functions

(
(setf %uniform): Private generic functions
(setf %uniform): Private generic functions
(setf allow-casts): Private generic functions
(setf allow-casts): Private generic functions
(setf arg-type): Private generic functions
(setf arg-type): Private generic functions
(setf argument-environment): Private generic functions
(setf argument-environment): Private generic functions
(setf argument-environment): Private generic functions
(setf argument-types): Private generic functions
(setf argument-types): Private generic functions
(setf argument-types): Private generic functions
(setf arguments): Private generic functions
(setf arguments): Private generic functions
(setf arguments): Private generic functions
(setf array-size): Private generic functions
(setf array-size): Private generic functions
(setf array-size): Private generic functions
(setf array-size): Private generic functions
(setf base-type): Private generic functions
(setf base-type): Private generic functions
(setf base-type): Private generic functions
(setf base-type): Private generic functions
(setf binding): Private generic functions
(setf binding): Private generic functions
(setf binding): Private generic functions
(setf binding): Private generic functions
(setf binding): Private generic functions
(setf binding): Private generic functions
(setf binding): Private generic functions
(setf bindings): Private generic functions
(setf bindings): Private generic functions
(setf body): Private generic functions
(setf body): Private generic functions
(setf called-function): Private generic functions
(setf called-function): Private generic functions
(setf called-function): Private generic functions
(setf cast-type): Private generic functions
(setf cast-type): Private generic functions
(setf condition-forms): Private generic functions
(setf condition-forms): Private generic functions
(setf conflicts): Private generic functions
(setf conflicts): Private generic functions
(setf constraints): Private generic functions
(setf constraints): Private generic functions
(setf constraints): Private generic functions
(setf ctype): Private generic functions
(setf ctype): Private generic functions
(setf declarations): Private generic functions
(setf declarations): Private generic functions
(setf declarations): Private generic functions
(setf declared-type): Private generic functions
(setf declared-type): Private generic functions
(setf declared-type): Private generic functions
(setf default): Private generic functions
(setf default): Private generic functions
(setf else-form): Private generic functions
(setf else-form): Private generic functions
(setf environment): Private generic functions
(setf environment): Private generic functions
(setf equiv): Private generic functions
(setf equiv): Private generic functions
(setf expander): Private generic functions
(setf expander): Private generic functions
(setf expander): Private generic functions
(setf expansion): Private generic functions
(setf expansion): Private generic functions
(setf explicit-casts): Private generic functions
(setf explicit-casts): Private generic functions
(setf expression): Private generic functions
(setf expression): Private generic functions
(setf field): Private generic functions
(setf field): Private generic functions
(setf field): Private generic functions
(setf final-binding-type-cache): Private generic functions
(setf final-binding-type-cache): Private generic functions
(setf function-types): Private generic functions
(setf function-types): Private generic functions
(setf function-types-by-arity): Private generic functions
(setf function-types-by-arity): Private generic functions
(setf global-function): Private generic functions
(setf global-function): Private generic functions
(setf glsl-name): Private generic functions
(setf glsl-name): Private generic functions
(setf glsl-name): Private generic functions
(setf glsl-name): Private generic functions
(setf implicit-casts-from): Private generic functions
(setf implicit-casts-from): Private generic functions
(setf implicit-casts-to): Private generic functions
(setf implicit-casts-to): Private generic functions
(setf in-type): Private generic functions
(setf in-type): Private generic functions
(setf index): Private generic functions
(setf index): Private generic functions
(setf init-forms): Private generic functions
(setf init-forms): Private generic functions
(setf initial-value-form): Private generic functions
(setf initial-value-form): Private generic functions
(setf interface-block): Private generic functions
(setf interface-block): Private generic functions
(setf interface-qualifier): Private generic functions
(setf interface-qualifier): Private generic functions
(setf internal): Private generic functions
(setf internal): Private generic functions
(setf internal): Private generic functions
(setf internal): Private generic functions
(setf lambda-list): Private generic functions
(setf lambda-list): Private generic functions
(setf layout-qualifier): Private generic functions
(setf layout-qualifier): Private generic functions
(setf layout-qualifiers): Private generic functions
(setf layout-qualifiers): Private generic functions
(setf live-uniforms): Private generic functions
(setf live-uniforms): Private generic functions
(setf local-binding-type-data): Private generic functions
(setf local-binding-type-data): Private generic functions
(setf locked): Private generic functions
(setf locked): Private generic functions
(setf max-arity): Private generic functions
(setf max-arity): Private generic functions
(setf min-arity): Private generic functions
(setf min-arity): Private generic functions
(setf min-size): Private generic functions
(setf min-size): Private generic functions
(setf min-size): Private generic functions
(setf min-size): Private generic functions
(setf modified): Public standalone methods
(setf modified): Private generic functions
(setf modified): Private generic functions
(setf name): Private generic functions
(setf name): Private generic functions
(setf name): Private generic functions
(setf name): Private generic functions
(setf name): Private generic functions
(setf name): Private generic functions
(setf name): Private generic functions
(setf old-lambda-list): Private generic functions
(setf old-lambda-list): Private generic functions
(setf other-type): Private generic functions
(setf other-type): Private generic functions
(setf out-size): Private generic functions
(setf out-size): Private generic functions
(setf out-type): Private generic functions
(setf out-type): Private generic functions
(setf qualifiers): Private generic functions
(setf qualifiers): Private generic functions
(setf raw-arguments): Private generic functions
(setf raw-arguments): Private generic functions
(setf raw-arguments): Private generic functions
(setf recompilation-callbacks): Private generic functions
(setf recompilation-callbacks): Private generic functions
(setf return-type): Private generic functions
(setf return-type): Private generic functions
(setf return-type): Private generic functions
(setf scalar/vector-set): Private generic functions
(setf scalar/vector-set): Private generic functions
(setf scalar/vector-size): Private generic functions
(setf scalar/vector-size): Private generic functions
(setf stage): Public generic functions
(setf stage): Public generic functions
(setf stage-bindings): Private generic functions
(setf stage-bindings): Private generic functions
(setf step-forms): Private generic functions
(setf step-forms): Private generic functions
(setf test-form): Private generic functions
(setf test-form): Private generic functions
(setf then-form): Private generic functions
(setf then-form): Private generic functions
(setf type-inference-state): Private generic functions
(setf type-inference-state): Private generic functions
(setf types): Private generic functions
(setf types): Private generic functions
(setf uniform): Private ordinary functions
(setf valid-stages): Private generic functions
(setf valid-stages): Private generic functions
(setf value): Private generic functions
(setf value): Private generic functions
(setf value-type): Private generic functions
(setf value-type): Private generic functions
(setf value-type): Private generic functions
(setf value-type): Private generic functions
(setf value-type): Private generic functions
(setf value-type): Private generic functions
(setf version): Private generic functions
(setf version): Private generic functions

A
add-compiler-macro: Private ordinary functions
add-concrete-type: Private ordinary functions
add-constraint: Private generic functions
add-constraint: Private generic functions
add-constraint: Private generic functions
add-constraint: Private generic functions
add-constraint: Private generic functions
add-constraint: Private generic functions
add-function: Private ordinary functions
add-function-arguments: Private ordinary functions
add-internal-function/full: Private ordinary functions
add-internal-function/mat: Private ordinary functions
add-internal-function/s: Private ordinary functions
add-macro: Private ordinary functions
add-symbol-macro: Private ordinary functions
add-unknown-function: Private ordinary functions
add-variable: Private ordinary functions
allow-casts: Private generic functions
allow-casts: Private generic functions
arg-type: Private generic functions
arg-type: Private generic functions
argument-environment: Private generic functions
argument-environment: Private generic functions
argument-environment: Private generic functions
argument-types: Private generic functions
argument-types: Private generic functions
argument-types: Private generic functions
arguments: Private generic functions
arguments: Private generic functions
arguments: Private generic functions
array-size: Private generic functions
array-size: Private generic functions
array-size: Private generic functions
array-size: Private generic functions
array-suffix: Private generic functions
array-suffix: Private generic functions
array-suffix: Private generic functions
array-suffix: Private generic functions
array-suffix: Private generic functions
assert-statement: Private macros
attribute: Public macros

B
base-type: Private generic functions
base-type: Private generic functions
base-type: Private generic functions
base-type: Private generic functions
bind-interface: Public macros
bind-interface: Private ordinary functions
binding: Private generic functions
binding: Private generic functions
binding: Private generic functions
binding: Private generic functions
binding: Private generic functions
binding: Private generic functions
binding: Private generic functions
bindings: Private generic functions
bindings: Private generic functions
bindings-used-by: Private generic functions
bindings-used-by: Private generic functions
bindings-using: Private generic functions
bindings-using: Private generic functions
body: Private generic functions
body: Private generic functions

C
cache-binding: Private ordinary functions
call-with-package-environment: Private ordinary functions
called-function: Private generic functions
called-function: Private generic functions
called-function: Private generic functions
cast-to-boolean: Private ordinary functions
cast-type: Private generic functions
cast-type: Private generic functions
check-locked: Private ordinary functions
check-slot-stages: Private generic functions
check-slot-stages: Private generic functions
check-stages: Private generic functions
check-stages: Private generic functions
compile-form: Public ordinary functions
compiler-macro-bindings: Private generic functions
compiler-macro-bindings: Private generic functions
condition-forms: Private generic functions
condition-forms: Private generic functions
conflicts: Private generic functions
conflicts: Private generic functions
constraints: Private generic functions
constraints: Private generic functions
constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-constraints: Private generic functions
copy-unify-constraints: Private ordinary functions
ctype: Private generic functions
ctype: Private generic functions

D
debug-local-binding-type-data: Private ordinary functions
debug-type-names: Private ordinary functions
declarations: Private generic functions
declarations: Private generic functions
declarations: Private generic functions
declared-type: Private generic functions
declared-type: Private generic functions
declared-type: Private generic functions
default: Private generic functions
default: Private generic functions
default-env: Private ordinary functions
defclmacro: Private macros
defconstant: Public macros
defmacro: Public macros
defmethod2: Private macros
defprint: Private macros
defprint-binop: Private macros
defprinti: Private macros
defstruct: Public macros
defun: Public macros
defwalker: Private macros
dirty: Private generic functions
dirty: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions
dump-constraint: Private generic functions

E
else-form: Private generic functions
else-form: Private generic functions
ensure-compiled: Private ordinary functions
ensure-package-environment: Private ordinary functions
environment: Private generic functions
environment: Private generic functions
equiv: Private generic functions
equiv: Private generic functions
expand-buffers: Private ordinary functions
expand-extension-keyword: Private ordinary functions
expand-optional-arg-type: Private ordinary functions
expand-structs: Private ordinary functions
expand-uniform-slots: Private generic functions
expand-uniform-slots: Private generic functions
expand-uniform-slots: Private generic functions
expand-uniform-slots: Private generic functions
expand-uniform-slots: Private generic functions
expand-uniforms: Private ordinary functions
expander: Private generic functions
expander: Private generic functions
expander: Private generic functions
expansion: Private generic functions
expansion: Private generic functions
explicit-casts: Private generic functions
explicit-casts: Private generic functions
expression: Private generic functions
expression: Private generic functions

F
field: Private generic functions
field: Private generic functions
field: Private generic functions
filter-progn: Private ordinary functions
final-binding-type-cache: Private generic functions
final-binding-type-cache: Private generic functions
finalize-inference: Private ordinary functions
flag-modified-constraint: Private ordinary functions
flag-modified-type: Private ordinary functions
flag-shader: Private ordinary functions
flatten-function: Private ordinary functions
flatten-type: Private generic functions
flatten-type: Private generic functions
flatten-type: Private generic functions
flatten-type: Private generic functions
flatten-type: Private generic functions
flatten-type: Private generic functions
flatten-type: Private generic functions
flatten-types: Private generic functions
flatten-types: Private generic functions
flatten-types: Private generic functions
flatten-types: Private generic functions
flatten-types: Private generic functions
flatten-types: Private generic functions
flatten-types: Private generic functions
Function, %reload-program: Private ordinary functions
Function, %translate-name: Private ordinary functions
Function, (setf uniform): Private ordinary functions
Function, add-compiler-macro: Private ordinary functions
Function, add-concrete-type: Private ordinary functions
Function, add-function: Private ordinary functions
Function, add-function-arguments: Private ordinary functions
Function, add-internal-function/full: Private ordinary functions
Function, add-internal-function/mat: Private ordinary functions
Function, add-internal-function/s: Private ordinary functions
Function, add-macro: Private ordinary functions
Function, add-symbol-macro: Private ordinary functions
Function, add-unknown-function: Private ordinary functions
Function, add-variable: Private ordinary functions
Function, bind-interface: Private ordinary functions
Function, cache-binding: Private ordinary functions
Function, call-with-package-environment: Private ordinary functions
Function, cast-to-boolean: Private ordinary functions
Function, check-locked: Private ordinary functions
Function, compile-form: Public ordinary functions
Function, copy-unify-constraints: Private ordinary functions
Function, debug-local-binding-type-data: Private ordinary functions
Function, debug-type-names: Private ordinary functions
Function, default-env: Private ordinary functions
Function, ensure-compiled: Private ordinary functions
Function, ensure-package-environment: Private ordinary functions
Function, expand-buffers: Private ordinary functions
Function, expand-extension-keyword: Private ordinary functions
Function, expand-optional-arg-type: Private ordinary functions
Function, expand-structs: Private ordinary functions
Function, expand-uniforms: Private ordinary functions
Function, filter-progn: Private ordinary functions
Function, finalize-inference: Private ordinary functions
Function, flag-modified-constraint: Private ordinary functions
Function, flag-modified-type: Private ordinary functions
Function, flag-shader: Private ordinary functions
Function, flatten-function: Private ordinary functions
Function, function-signature-changed: Private ordinary functions
Function, generate-stage: Public ordinary functions
Function, get-compiler-macro-binding: Private ordinary functions
Function, get-compiler-macro-function: Private ordinary functions
Function, get-function-binding: Private ordinary functions
Function, get-macro-function: Private ordinary functions
Function, get-only-hash-key: Private ordinary functions
Function, get-symbol-macro: Private ordinary functions
Function, get-type-binding: Private ordinary functions
Function, get-variable-binding: Private ordinary functions
Function, global-env: Private ordinary functions
Function, in/out/uniform/attrib: Private ordinary functions
Function, infer: Private ordinary functions
Function, infer-modified-functions: Private ordinary functions
Function, lambda-list-vars: Private ordinary functions
Function, make-&key-expander: Private ordinary functions
Function, pprint-glsl: Private ordinary functions
Function, print-bindings/ret: Private ordinary functions
Function, print-main-layout-qualifiers: Private ordinary functions
Function, reload-program: Private ordinary functions
Function, remove-function: Private ordinary functions
Function, reset-program: Private ordinary functions
Function, run-type-inference: Private ordinary functions
Function, set-type: Private ordinary functions
Function, shader-program: Private ordinary functions
Function, sort-interface-qualifiers: Private ordinary functions
Function, topo-sort-dependencies: Private ordinary functions
Function, translate-interface-qualifiers: Private ordinary functions
Function, tree-shaker: Private ordinary functions
Function, uniform-index: Private ordinary functions
Function, uniform-matrix: Private ordinary functions
Function, uniform-matrix-2fv: Private ordinary functions
Function, uniform-matrix-2x3-fv: Private ordinary functions
Function, uniform-matrix-2x4-fv: Private ordinary functions
Function, uniform-matrix-3fv: Private ordinary functions
Function, uniform-matrix-3x2-fv: Private ordinary functions
Function, uniform-matrix-3x4-fv: Private ordinary functions
Function, uniform-matrix-4fv: Private ordinary functions
Function, uniform-matrix-4x2-fv: Private ordinary functions
Function, uniform-matrix-4x3-fv: Private ordinary functions
Function, uniformf: Private ordinary functions
Function, uniformfv: Private ordinary functions
Function, uniformi: Private ordinary functions
Function, update-dependencies: Private ordinary functions
Function, vector->{}: Private ordinary functions
Function, walk-function-body: Private ordinary functions
function-bindings: Private generic functions
function-bindings: Private generic functions
function-signature-changed: Private ordinary functions
function-types: Private generic functions
function-types: Private generic functions
function-types-by-arity: Private generic functions
function-types-by-arity: Private generic functions

G
generate-output: Private generic functions
generate-output: Private generic functions
generate-stage: Public ordinary functions
Generic Function, %print: Private generic functions
Generic Function, (setf %uniform): Private generic functions
Generic Function, (setf allow-casts): Private generic functions
Generic Function, (setf arg-type): Private generic functions
Generic Function, (setf argument-environment): Private generic functions
Generic Function, (setf argument-types): Private generic functions
Generic Function, (setf arguments): Private generic functions
Generic Function, (setf array-size): Private generic functions
Generic Function, (setf base-type): Private generic functions
Generic Function, (setf binding): Private generic functions
Generic Function, (setf bindings): Private generic functions
Generic Function, (setf body): Private generic functions
Generic Function, (setf called-function): Private generic functions
Generic Function, (setf cast-type): Private generic functions
Generic Function, (setf condition-forms): Private generic functions
Generic Function, (setf conflicts): Private generic functions
Generic Function, (setf constraints): Private generic functions
Generic Function, (setf ctype): Private generic functions
Generic Function, (setf declarations): Private generic functions
Generic Function, (setf declared-type): Private generic functions
Generic Function, (setf default): Private generic functions
Generic Function, (setf else-form): Private generic functions
Generic Function, (setf environment): Private generic functions
Generic Function, (setf equiv): Private generic functions
Generic Function, (setf expander): Private generic functions
Generic Function, (setf expansion): Private generic functions
Generic Function, (setf explicit-casts): Private generic functions
Generic Function, (setf expression): Private generic functions
Generic Function, (setf field): Private generic functions
Generic Function, (setf final-binding-type-cache): Private generic functions
Generic Function, (setf function-types): Private generic functions
Generic Function, (setf function-types-by-arity): Private generic functions
Generic Function, (setf global-function): Private generic functions
Generic Function, (setf glsl-name): Private generic functions
Generic Function, (setf implicit-casts-from): Private generic functions
Generic Function, (setf implicit-casts-to): Private generic functions
Generic Function, (setf in-type): Private generic functions
Generic Function, (setf index): Private generic functions
Generic Function, (setf init-forms): Private generic functions
Generic Function, (setf initial-value-form): Private generic functions
Generic Function, (setf interface-block): Private generic functions
Generic Function, (setf interface-qualifier): Private generic functions
Generic Function, (setf internal): Private generic functions
Generic Function, (setf lambda-list): Private generic functions
Generic Function, (setf layout-qualifier): Private generic functions
Generic Function, (setf layout-qualifiers): Private generic functions
Generic Function, (setf live-uniforms): Private generic functions
Generic Function, (setf local-binding-type-data): Private generic functions
Generic Function, (setf locked): Private generic functions
Generic Function, (setf max-arity): Private generic functions
Generic Function, (setf min-arity): Private generic functions
Generic Function, (setf min-size): Private generic functions
Generic Function, (setf modified): Private generic functions
Generic Function, (setf name): Private generic functions
Generic Function, (setf old-lambda-list): Private generic functions
Generic Function, (setf other-type): Private generic functions
Generic Function, (setf out-size): Private generic functions
Generic Function, (setf out-type): Private generic functions
Generic Function, (setf qualifiers): Private generic functions
Generic Function, (setf raw-arguments): Private generic functions
Generic Function, (setf recompilation-callbacks): Private generic functions
Generic Function, (setf return-type): Private generic functions
Generic Function, (setf scalar/vector-set): Private generic functions
Generic Function, (setf scalar/vector-size): Private generic functions
Generic Function, (setf stage): Public generic functions
Generic Function, (setf stage-bindings): Private generic functions
Generic Function, (setf step-forms): Private generic functions
Generic Function, (setf test-form): Private generic functions
Generic Function, (setf then-form): Private generic functions
Generic Function, (setf type-inference-state): Private generic functions
Generic Function, (setf types): Private generic functions
Generic Function, (setf valid-stages): Private generic functions
Generic Function, (setf value): Private generic functions
Generic Function, (setf value-type): Private generic functions
Generic Function, (setf version): Private generic functions
Generic Function, add-constraint: Private generic functions
Generic Function, allow-casts: Private generic functions
Generic Function, arg-type: Private generic functions
Generic Function, argument-environment: Private generic functions
Generic Function, argument-types: Private generic functions
Generic Function, arguments: Private generic functions
Generic Function, array-size: Private generic functions
Generic Function, array-suffix: Private generic functions
Generic Function, base-type: Private generic functions
Generic Function, binding: Private generic functions
Generic Function, bindings: Private generic functions
Generic Function, bindings-used-by: Private generic functions
Generic Function, bindings-using: Private generic functions
Generic Function, body: Private generic functions
Generic Function, called-function: Private generic functions
Generic Function, cast-type: Private generic functions
Generic Function, check-slot-stages: Private generic functions
Generic Function, check-stages: Private generic functions
Generic Function, compiler-macro-bindings: Private generic functions
Generic Function, condition-forms: Private generic functions
Generic Function, conflicts: Private generic functions
Generic Function, constraints: Private generic functions
Generic Function, copy-constraints: Private generic functions
Generic Function, ctype: Private generic functions
Generic Function, declarations: Private generic functions
Generic Function, declared-type: Private generic functions
Generic Function, default: Private generic functions
Generic Function, dirty: Private generic functions
Generic Function, dump-constraint: Private generic functions
Generic Function, else-form: Private generic functions
Generic Function, environment: Private generic functions
Generic Function, equiv: Private generic functions
Generic Function, expand-uniform-slots: Private generic functions
Generic Function, expander: Private generic functions
Generic Function, expansion: Private generic functions
Generic Function, explicit-casts: Private generic functions
Generic Function, expression: Private generic functions
Generic Function, field: Private generic functions
Generic Function, final-binding-type-cache: Private generic functions
Generic Function, flatten-type: Private generic functions
Generic Function, flatten-types: Private generic functions
Generic Function, function-bindings: Private generic functions
Generic Function, function-types: Private generic functions
Generic Function, function-types-by-arity: Private generic functions
Generic Function, generate-output: Private generic functions
Generic Function, get-concrete-type: Private generic functions
Generic Function, get-equiv-type: Private generic functions
Generic Function, global-function: Private generic functions
Generic Function, glsl-name: Private generic functions
Generic Function, implicit-casts-from: Private generic functions
Generic Function, implicit-casts-to: Private generic functions
Generic Function, in-type: Private generic functions
Generic Function, index: Private generic functions
Generic Function, init-forms: Private generic functions
Generic Function, initial-value-form: Private generic functions
Generic Function, integral-type: Private generic functions
Generic Function, interface-block: Private generic functions
Generic Function, interface-qualifier: Private generic functions
Generic Function, internal: Private generic functions
Generic Function, is-type: Private generic functions
Generic Function, lambda-list: Private generic functions
Generic Function, layout-qualifier: Private generic functions
Generic Function, layout-qualifiers: Private generic functions
Generic Function, live-uniforms: Private generic functions
Generic Function, local-binding-type-data: Private generic functions
Generic Function, locked: Private generic functions
Generic Function, max-arity: Private generic functions
Generic Function, min-arity: Private generic functions
Generic Function, min-size: Private generic functions
Generic Function, modified: Private generic functions
Generic Function, name: Private generic functions
Generic Function, name-map: Private generic functions
Generic Function, old-lambda-list: Private generic functions
Generic Function, other-type: Private generic functions
Generic Function, out-size: Private generic functions
Generic Function, out-type: Private generic functions
Generic Function, parent-scope: Private generic functions
Generic Function, process-type-declarations-for-scope: Private generic functions
Generic Function, program: Private generic functions
Generic Function, qualifiers: Private generic functions
Generic Function, raw-arguments: Private generic functions
Generic Function, recompilation-callbacks: Private generic functions
Generic Function, return-type: Private generic functions
Generic Function, scalar/vector-set: Private generic functions
Generic Function, scalar/vector-size: Private generic functions
Generic Function, ssbos: Private generic functions
Generic Function, stage: Public generic functions
Generic Function, stage-binding: Private generic functions
Generic Function, stage-bindings: Private generic functions
Generic Function, stages: Private generic functions
Generic Function, step-forms: Private generic functions
Generic Function, structs: Private generic functions
Generic Function, test-form: Private generic functions
Generic Function, then-form: Private generic functions
Generic Function, translate-name: Private generic functions
Generic Function, translate-slot-name: Private generic functions
Generic Function, translate-type: Private generic functions
Generic Function, type-inference-state: Private generic functions
Generic Function, types: Private generic functions
Generic Function, unifiable-types-p: Private generic functions
Generic Function, uniform: Private generic functions
Generic Function, uniforms: Private generic functions
Generic Function, unify: Private generic functions
Generic Function, update-constraint: Private generic functions
Generic Function, use-program: Private generic functions
Generic Function, valid-stages: Private generic functions
Generic Function, value: Private generic functions
Generic Function, value-type: Private generic functions
Generic Function, variable-bindings: Private generic functions
Generic Function, version: Private generic functions
Generic Function, walk: Private generic functions
Generic Function, walk-cons: Private generic functions
get-compiler-macro-binding: Private ordinary functions
get-compiler-macro-function: Private ordinary functions
get-concrete-type: Private generic functions
get-concrete-type: Private generic functions
get-concrete-type: Private generic functions
get-concrete-type: Private generic functions
get-concrete-type: Private generic functions
get-concrete-type: Private generic functions
get-equiv-type: Private generic functions
get-equiv-type: Private generic functions
get-equiv-type: Private generic functions
get-function-binding: Private ordinary functions
get-macro-function: Private ordinary functions
get-only-hash-key: Private ordinary functions
get-symbol-macro: Private ordinary functions
get-type-binding: Private ordinary functions
get-variable-binding: Private ordinary functions
global-env: Private ordinary functions
global-function: Private generic functions
global-function: Private generic functions
glsl-attribute: Public macros
glsl-bind-interface: Private macros
glsl-defconstant: Public macros
glsl-defun: Public macros
glsl-input: Public macros
glsl-interface: Public macros
glsl-name: Private generic functions
glsl-name: Private generic functions
glsl-name: Private generic functions
glsl-name: Private generic functions
glsl-output: Public macros
glsl-uniform: Public macros

I
implicit-casts-from: Private generic functions
implicit-casts-from: Private generic functions
implicit-casts-from: Private generic functions
implicit-casts-to: Private generic functions
implicit-casts-to: Private generic functions
implicit-casts-to: Private generic functions
in-type: Private generic functions
in-type: Private generic functions
in/out/uniform/attrib: Private ordinary functions
index: Private generic functions
index: Private generic functions
infer: Private ordinary functions
infer-modified-functions: Private ordinary functions
init-forms: Private generic functions
init-forms: Private generic functions
initial-value-form: Private generic functions
initial-value-form: Private generic functions
initialize-instance: Public standalone methods
input: Public macros
integral-type: Private generic functions
integral-type: Private generic functions
integral-type: Private generic functions
interface: Public macros
interface-block: Private generic functions
interface-block: Private generic functions
interface-qualifier: Private generic functions
interface-qualifier: Private generic functions
internal: Private generic functions
internal: Private generic functions
internal: Private generic functions
internal: Private generic functions
is-type: Private generic functions
is-type: Private generic functions
is-type: Private generic functions

L
lambda-list: Private generic functions
lambda-list: Private generic functions
lambda-list-vars: Private ordinary functions
layout-qualifier: Private generic functions
layout-qualifier: Private generic functions
layout-qualifiers: Private generic functions
layout-qualifiers: Private generic functions
live-uniforms: Private generic functions
live-uniforms: Private generic functions
local-binding-type-data: Private generic functions
local-binding-type-data: Private generic functions
locked: Private generic functions
locked: Private generic functions

M
Macro, %glsl-compiler-macro: Private macros
Macro, %glsl-macro: Private macros
Macro, assert-statement: Private macros
Macro, attribute: Public macros
Macro, bind-interface: Public macros
Macro, defclmacro: Private macros
Macro, defconstant: Public macros
Macro, defmacro: Public macros
Macro, defmethod2: Private macros
Macro, defprint: Private macros
Macro, defprint-binop: Private macros
Macro, defprinti: Private macros
Macro, defstruct: Public macros
Macro, defun: Public macros
Macro, defwalker: Private macros
Macro, glsl-attribute: Public macros
Macro, glsl-bind-interface: Private macros
Macro, glsl-defconstant: Public macros
Macro, glsl-defun: Public macros
Macro, glsl-input: Public macros
Macro, glsl-interface: Public macros
Macro, glsl-output: Public macros
Macro, glsl-uniform: Public macros
Macro, input: Public macros
Macro, interface: Public macros
Macro, output: Public macros
Macro, shared: Public macros
Macro, uniform: Public macros
Macro, with-environment-scope: Private macros
Macro, with-lambda-list-vars: Private macros
Macro, with-package-environment: Private macros
Macro, with-program: Private macros
make-&key-expander: Private ordinary functions
max-arity: Private generic functions
max-arity: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, %print: Private generic functions
Method, (setf %uniform): Private generic functions
Method, (setf allow-casts): Private generic functions
Method, (setf arg-type): Private generic functions
Method, (setf argument-environment): Private generic functions
Method, (setf argument-environment): Private generic functions
Method, (setf argument-types): Private generic functions
Method, (setf argument-types): Private generic functions
Method, (setf arguments): Private generic functions
Method, (setf arguments): Private generic functions
Method, (setf array-size): Private generic functions
Method, (setf array-size): Private generic functions
Method, (setf array-size): Private generic functions
Method, (setf base-type): Private generic functions
Method, (setf base-type): Private generic functions
Method, (setf base-type): Private generic functions
Method, (setf binding): Private generic functions
Method, (setf binding): Private generic functions
Method, (setf binding): Private generic functions
Method, (setf binding): Private generic functions
Method, (setf binding): Private generic functions
Method, (setf binding): Private generic functions
Method, (setf bindings): Private generic functions
Method, (setf body): Private generic functions
Method, (setf called-function): Private generic functions
Method, (setf called-function): Private generic functions
Method, (setf cast-type): Private generic functions
Method, (setf condition-forms): Private generic functions
Method, (setf conflicts): Private generic functions
Method, (setf constraints): Private generic functions
Method, (setf constraints): Private generic functions
Method, (setf ctype): Private generic functions
Method, (setf declarations): Private generic functions
Method, (setf declarations): Private generic functions
Method, (setf declared-type): Private generic functions
Method, (setf declared-type): Private generic functions
Method, (setf default): Private generic functions
Method, (setf else-form): Private generic functions
Method, (setf environment): Private generic functions
Method, (setf equiv): Private generic functions
Method, (setf expander): Private generic functions
Method, (setf expander): Private generic functions
Method, (setf expansion): Private generic functions
Method, (setf explicit-casts): Private generic functions
Method, (setf expression): Private generic functions
Method, (setf field): Private generic functions
Method, (setf field): Private generic functions
Method, (setf final-binding-type-cache): Private generic functions
Method, (setf function-types): Private generic functions
Method, (setf function-types-by-arity): Private generic functions
Method, (setf global-function): Private generic functions
Method, (setf glsl-name): Private generic functions
Method, (setf glsl-name): Private generic functions
Method, (setf glsl-name): Private generic functions
Method, (setf implicit-casts-from): Private generic functions
Method, (setf implicit-casts-to): Private generic functions
Method, (setf in-type): Private generic functions
Method, (setf index): Private generic functions
Method, (setf init-forms): Private generic functions
Method, (setf initial-value-form): Private generic functions
Method, (setf interface-block): Private generic functions
Method, (setf interface-qualifier): Private generic functions
Method, (setf internal): Private generic functions
Method, (setf internal): Private generic functions
Method, (setf internal): Private generic functions
Method, (setf lambda-list): Private generic functions
Method, (setf layout-qualifier): Private generic functions
Method, (setf layout-qualifiers): Private generic functions
Method, (setf live-uniforms): Private generic functions
Method, (setf local-binding-type-data): Private generic functions
Method, (setf locked): Private generic functions
Method, (setf max-arity): Private generic functions
Method, (setf min-arity): Private generic functions
Method, (setf min-size): Private generic functions
Method, (setf min-size): Private generic functions
Method, (setf min-size): Private generic functions
Method, (setf modified): Public standalone methods
Method, (setf modified): Private generic functions
Method, (setf name): Private generic functions
Method, (setf name): Private generic functions
Method, (setf name): Private generic functions
Method, (setf name): Private generic functions
Method, (setf name): Private generic functions
Method, (setf name): Private generic functions
Method, (setf old-lambda-list): Private generic functions
Method, (setf other-type): Private generic functions
Method, (setf out-size): Private generic functions
Method, (setf out-type): Private generic functions
Method, (setf qualifiers): Private generic functions
Method, (setf raw-arguments): Private generic functions
Method, (setf raw-arguments): Private generic functions
Method, (setf recompilation-callbacks): Private generic functions
Method, (setf return-type): Private generic functions
Method, (setf return-type): Private generic functions
Method, (setf scalar/vector-set): Private generic functions
Method, (setf scalar/vector-size): Private generic functions
Method, (setf stage): Public generic functions
Method, (setf stage-bindings): Private generic functions
Method, (setf step-forms): Private generic functions
Method, (setf test-form): Private generic functions
Method, (setf then-form): Private generic functions
Method, (setf type-inference-state): Private generic functions
Method, (setf types): Private generic functions
Method, (setf valid-stages): Private generic functions
Method, (setf value): Private generic functions
Method, (setf value-type): Private generic functions
Method, (setf value-type): Private generic functions
Method, (setf value-type): Private generic functions
Method, (setf value-type): Private generic functions
Method, (setf value-type): Private generic functions
Method, (setf version): Private generic functions
Method, add-constraint: Private generic functions
Method, add-constraint: Private generic functions
Method, add-constraint: Private generic functions
Method, add-constraint: Private generic functions
Method, add-constraint: Private generic functions
Method, allow-casts: Private generic functions
Method, arg-type: Private generic functions
Method, argument-environment: Private generic functions
Method, argument-environment: Private generic functions
Method, argument-types: Private generic functions
Method, argument-types: Private generic functions
Method, arguments: Private generic functions
Method, arguments: Private generic functions
Method, array-size: Private generic functions
Method, array-size: Private generic functions
Method, array-size: Private generic functions
Method, array-suffix: Private generic functions
Method, array-suffix: Private generic functions
Method, array-suffix: Private generic functions
Method, array-suffix: Private generic functions
Method, base-type: Private generic functions
Method, base-type: Private generic functions
Method, base-type: Private generic functions
Method, binding: Private generic functions
Method, binding: Private generic functions
Method, binding: Private generic functions
Method, binding: Private generic functions
Method, binding: Private generic functions
Method, binding: Private generic functions
Method, bindings: Private generic functions
Method, bindings-used-by: Private generic functions
Method, bindings-using: Private generic functions
Method, body: Private generic functions
Method, called-function: Private generic functions
Method, called-function: Private generic functions
Method, cast-type: Private generic functions
Method, check-slot-stages: Private generic functions
Method, check-stages: Private generic functions
Method, compiler-macro-bindings: Private generic functions
Method, condition-forms: Private generic functions
Method, conflicts: Private generic functions
Method, constraints: Private generic functions
Method, constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, copy-constraints: Private generic functions
Method, ctype: Private generic functions
Method, declarations: Private generic functions
Method, declarations: Private generic functions
Method, declared-type: Private generic functions
Method, declared-type: Private generic functions
Method, default: Private generic functions
Method, dirty: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, dump-constraint: Private generic functions
Method, else-form: Private generic functions
Method, environment: Private generic functions
Method, equiv: Private generic functions
Method, expand-uniform-slots: Private generic functions
Method, expand-uniform-slots: Private generic functions
Method, expand-uniform-slots: Private generic functions
Method, expand-uniform-slots: Private generic functions
Method, expander: Private generic functions
Method, expander: Private generic functions
Method, expansion: Private generic functions
Method, explicit-casts: Private generic functions
Method, expression: Private generic functions
Method, field: Private generic functions
Method, field: Private generic functions
Method, final-binding-type-cache: Private generic functions
Method, flatten-type: Private generic functions
Method, flatten-type: Private generic functions
Method, flatten-type: Private generic functions
Method, flatten-type: Private generic functions
Method, flatten-type: Private generic functions
Method, flatten-type: Private generic functions
Method, flatten-types: Private generic functions
Method, flatten-types: Private generic functions
Method, flatten-types: Private generic functions
Method, flatten-types: Private generic functions
Method, flatten-types: Private generic functions
Method, flatten-types: Private generic functions
Method, function-bindings: Private generic functions
Method, function-types: Private generic functions
Method, function-types-by-arity: Private generic functions
Method, generate-output: Private generic functions
Method, get-concrete-type: Private generic functions
Method, get-concrete-type: Private generic functions
Method, get-concrete-type: Private generic functions
Method, get-concrete-type: Private generic functions
Method, get-concrete-type: Private generic functions
Method, get-equiv-type: Private generic functions
Method, get-equiv-type: Private generic functions
Method, global-function: Private generic functions
Method, glsl-name: Private generic functions
Method, glsl-name: Private generic functions
Method, glsl-name: Private generic functions
Method, implicit-casts-from: Private generic functions
Method, implicit-casts-from: Private generic functions
Method, implicit-casts-to: Private generic functions
Method, implicit-casts-to: Private generic functions
Method, in-type: Private generic functions
Method, index: Private generic functions
Method, init-forms: Private generic functions
Method, initial-value-form: Private generic functions
Method, initialize-instance: Public standalone methods
Method, integral-type: Private generic functions
Method, integral-type: Private generic functions
Method, interface-block: Private generic functions
Method, interface-qualifier: Private generic functions
Method, internal: Private generic functions
Method, internal: Private generic functions
Method, internal: Private generic functions
Method, is-type: Private generic functions
Method, is-type: Private generic functions
Method, lambda-list: Private generic functions
Method, layout-qualifier: Private generic functions
Method, layout-qualifiers: Private generic functions
Method, live-uniforms: Private generic functions
Method, local-binding-type-data: Private generic functions
Method, locked: Private generic functions
Method, max-arity: Private generic functions
Method, min-arity: Private generic functions
Method, min-size: Private generic functions
Method, min-size: Private generic functions
Method, min-size: Private generic functions
Method, modified: Public standalone methods
Method, modified: Private generic functions
Method, modified: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name-map: Private generic functions
Method, old-lambda-list: Private generic functions
Method, other-type: Private generic functions
Method, out-size: Private generic functions
Method, out-type: Private generic functions
Method, parent-scope: Private generic functions
Method, process-type-declarations-for-scope: Private generic functions
Method, program: Private generic functions
Method, qualifiers: Private generic functions
Method, raw-arguments: Private generic functions
Method, raw-arguments: Private generic functions
Method, recompilation-callbacks: Private generic functions
Method, return-type: Private generic functions
Method, return-type: Private generic functions
Method, scalar/vector-set: Private generic functions
Method, scalar/vector-size: Private generic functions
Method, ssbos: Private generic functions
Method, stage: Public generic functions
Method, stage-binding: Private generic functions
Method, stage-binding: Private generic functions
Method, stage-bindings: Private generic functions
Method, stages: Private generic functions
Method, step-forms: Private generic functions
Method, structs: Private generic functions
Method, test-form: Private generic functions
Method, then-form: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-name: Private generic functions
Method, translate-slot-name: Private generic functions
Method, translate-slot-name: Private generic functions
Method, translate-slot-name: Private generic functions
Method, translate-slot-name: Private generic functions
Method, translate-slot-name: Private generic functions
Method, translate-type: Private generic functions
Method, translate-type: Private generic functions
Method, translate-type: Private generic functions
Method, translate-type: Private generic functions
Method, translate-type: Private generic functions
Method, translate-type: Private generic functions
Method, translate-type: Private generic functions
Method, translate-type: Private generic functions
Method, type-inference-state: Private generic functions
Method, types: Private generic functions
Method, types: Private generic functions
Method, types: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, unifiable-types-p: Private generic functions
Method, uniform: Private generic functions
Method, uniforms: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, unify: Private generic functions
Method, update-constraint: Private generic functions
Method, update-constraint: Private generic functions
Method, update-constraint: Private generic functions
Method, update-constraint: Private generic functions
Method, update-constraint: Private generic functions
Method, update-constraint: Private generic functions
Method, update-constraint: Private generic functions
Method, use-program: Private generic functions
Method, valid-stages: Private generic functions
Method, value: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, value-type: Private generic functions
Method, variable-bindings: Private generic functions
Method, version: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
Method, walk-cons: Private generic functions
min-arity: Private generic functions
min-arity: Private generic functions
min-size: Private generic functions
min-size: Private generic functions
min-size: Private generic functions
min-size: Private generic functions
modified: Public standalone methods
modified: Private generic functions
modified: Private generic functions
modified: Private generic functions

N
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name-map: Private generic functions
name-map: Private generic functions

O
old-lambda-list: Private generic functions
old-lambda-list: Private generic functions
other-type: Private generic functions
other-type: Private generic functions
out-size: Private generic functions
out-size: Private generic functions
out-type: Private generic functions
out-type: Private generic functions
output: Public macros

P
parent-scope: Private generic functions
parent-scope: Private generic functions
pprint-glsl: Private ordinary functions
print-bindings/ret: Private ordinary functions
print-main-layout-qualifiers: Private ordinary functions
process-type-declarations-for-scope: Private generic functions
process-type-declarations-for-scope: Private generic functions
program: Private generic functions
program: Private generic functions

Q
qualifiers: Private generic functions
qualifiers: Private generic functions

R
raw-arguments: Private generic functions
raw-arguments: Private generic functions
raw-arguments: Private generic functions
recompilation-callbacks: Private generic functions
recompilation-callbacks: Private generic functions
reload-program: Private ordinary functions
remove-function: Private ordinary functions
reset-program: Private ordinary functions
return-type: Private generic functions
return-type: Private generic functions
return-type: Private generic functions
run-type-inference: Private ordinary functions

S
scalar/vector-set: Private generic functions
scalar/vector-set: Private generic functions
scalar/vector-size: Private generic functions
scalar/vector-size: Private generic functions
set-type: Private ordinary functions
shader-program: Private ordinary functions
shared: Public macros
sort-interface-qualifiers: Private ordinary functions
ssbos: Private generic functions
ssbos: Private generic functions
stage: Public generic functions
stage: Public generic functions
stage-binding: Private generic functions
stage-binding: Private generic functions
stage-binding: Private generic functions
stage-bindings: Private generic functions
stage-bindings: Private generic functions
stages: Private generic functions
stages: Private generic functions
step-forms: Private generic functions
step-forms: Private generic functions
structs: Private generic functions
structs: Private generic functions

T
test-form: Private generic functions
test-form: Private generic functions
then-form: Private generic functions
then-form: Private generic functions
topo-sort-dependencies: Private ordinary functions
translate-interface-qualifiers: Private ordinary functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-name: Private generic functions
translate-slot-name: Private generic functions
translate-slot-name: Private generic functions
translate-slot-name: Private generic functions
translate-slot-name: Private generic functions
translate-slot-name: Private generic functions
translate-slot-name: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
translate-type: Private generic functions
tree-shaker: Private ordinary functions
type-inference-state: Private generic functions
type-inference-state: Private generic functions
types: Private generic functions
types: Private generic functions
types: Private generic functions
types: Private generic functions

U
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
unifiable-types-p: Private generic functions
uniform: Public macros
uniform: Private generic functions
uniform: Private generic functions
uniform-index: Private ordinary functions
uniform-matrix: Private ordinary functions
uniform-matrix-2fv: Private ordinary functions
uniform-matrix-2x3-fv: Private ordinary functions
uniform-matrix-2x4-fv: Private ordinary functions
uniform-matrix-3fv: Private ordinary functions
uniform-matrix-3x2-fv: Private ordinary functions
uniform-matrix-3x4-fv: Private ordinary functions
uniform-matrix-4fv: Private ordinary functions
uniform-matrix-4x2-fv: Private ordinary functions
uniform-matrix-4x3-fv: Private ordinary functions
uniformf: Private ordinary functions
uniformfv: Private ordinary functions
uniformi: Private ordinary functions
uniforms: Private generic functions
uniforms: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
unify: Private generic functions
update-constraint: Private generic functions
update-constraint: Private generic functions
update-constraint: Private generic functions
update-constraint: Private generic functions
update-constraint: Private generic functions
update-constraint: Private generic functions
update-constraint: Private generic functions
update-constraint: Private generic functions
update-dependencies: Private ordinary functions
use-program: Private generic functions
use-program: Private generic functions

V
valid-stages: Private generic functions
valid-stages: Private generic functions
value: Private generic functions
value: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
value-type: Private generic functions
variable-bindings: Private generic functions
variable-bindings: Private generic functions
vector->{}: Private ordinary functions
version: Private generic functions
version: Private generic functions

W
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-cons: Private generic functions
walk-function-body: Private ordinary functions
with-environment-scope: Private macros
with-lambda-list-vars: Private macros
with-package-environment: Private macros
with-program: Private macros


A.3 Variables

Jump to:   *  
A   B   C   D   E   F   G   I   L   M   N   O   P   Q   R   S   T   U   V  
Index Entry  Section

*
*add-conflict-vars*: Private special variables
*binding-types*: Private special variables
*bound-program*: Private special variables
*check-conflict-vars*: Private special variables
*cl-environment*: Private special variables
*compiler-lock*: Private special variables
*copy-constraints-hash*: Private special variables
*current-function*: Private special variables
*current-function-local-types*: Private special variables
*current-function-return-type*: Private special variables
*current-function-stages*: Private special variables
*current-shader-stage*: Private special variables
*default-backend*: Private special variables
*default-extensions*: Private special variables
*default-recompilation-callback*: Private special variables
*default-version*: Public special variables
*depth*: Private special variables
*environment*: Private special variables
*function-stages*: Private special variables
*global-environment*: Private special variables
*glsl-base-environment*: Private special variables
*in-expression*: Private special variables
*inference-worklist*: Private special variables
*instantiated-overloads*: Private special variables
*interface-qualifier-order*: Private special variables
*internal-function-printers*: Private special variables
*known-declarations*: Private special variables
*live-variables*: Private special variables
*max-depth*: Private special variables
*modified-function-hook*: Public special variables
*new-function-definitions*: Private special variables
*new-global-definitions*: Private special variables
*new-type-definitions*: Private special variables
*package-environments*: Private special variables
*pprint-glsl*: Private special variables
*print-as-main*: Private special variables
*print-shaders*: Private special variables
*shader-program-hook*: Private special variables
*shader-type->stage*: Private special variables
*stage-name-map*: Private special variables
*tree-shaker-current-object*: Private special variables
*tree-shaker-hook*: Private special variables
*tree-shaker-type-hook*: Private special variables
*verbose*: Private special variables

A
allow-casts: Private classes
arg-type: Private classes
argument-environment: Private classes
argument-environment: Private classes
argument-types: Private classes
argument-types: Private classes
arguments: Private classes
arguments: Private classes
array-size: Private classes
array-size: Private classes
array-size: Private classes

B
base-type: Private classes
base-type: Private classes
base-type: Private classes
binding: Private classes
binding: Private classes
binding: Private classes
binding: Private classes
binding: Private classes
binding: Private classes
bindings: Private classes
bindings-used-by: Private classes
bindings-using: Private classes
body: Private classes

C
called-function: Private classes
called-function: Private classes
cast-type: Private classes
compiler-macro-bindings: Private classes
condition-forms: Private classes
conflicts: Private classes
constraints: Private classes
constraints: Private classes
ctype: Private classes

D
declarations: Private classes
declarations: Private classes
declared-type: Private classes
declared-type: Private classes
default: Private classes
dirty: Private classes
docs: Private classes

E
else-form: Private classes
environment: Private classes
equiv: Private classes
expander: Private classes
expander: Private classes
expansion: Private classes
explicit-casts: Private classes
expression: Private classes

F
field: Private classes
field: Private classes
final-binding-type-cache: Private classes
function: Private classes
function-bindings: Private classes
function-types: Private classes
function-types-by-arity: Private classes

G
glsl-name: Private classes
glsl-name: Private classes
glsl-name: Private classes

I
implicit-casts-from: Private classes
implicit-casts-to: Private classes
in-type: Private classes
index: Private classes
init-forms: Private classes
initial-value-form: Private classes
interface-block: Private classes
interface-qualifier: Private classes
internal: Private classes
internal: Private classes
internal: Private classes

L
lambda-list: Private classes
layout-qualifier: Private classes
layout-qualifiers: Private classes
live-uniforms: Private classes
local-binding-type-data: Private classes
locked: Private classes

M
max-arity: Private classes
min-arity: Private classes
min-size: Private classes
min-size: Private classes
min-size: Private classes
modified: Private classes
modified: Private classes
modified: Private classes

N
name: Private classes
name: Private classes
name: Private classes
name: Private classes
name: Private classes
name: Private classes
name: Private classes
name-map: Private classes

O
old-lambda-list: Private classes
other-type: Private classes
out-size: Private classes
out-type: Private classes

P
parent-scope: Private classes
program: Private classes

Q
qualifiers: Private classes

R
raw-arguments: Private classes
raw-arguments: Private classes
recompilation-callbacks: Private classes
return-type: Private classes
return-type: Private classes

S
scalar/vector-set: Private classes
scalar/vector-size: Private classes
Slot, allow-casts: Private classes
Slot, arg-type: Private classes
Slot, argument-environment: Private classes
Slot, argument-environment: Private classes
Slot, argument-types: Private classes
Slot, argument-types: Private classes
Slot, arguments: Private classes
Slot, arguments: Private classes
Slot, array-size: Private classes
Slot, array-size: Private classes
Slot, array-size: Private classes
Slot, base-type: Private classes
Slot, base-type: Private classes
Slot, base-type: Private classes
Slot, binding: Private classes
Slot, binding: Private classes
Slot, binding: Private classes
Slot, binding: Private classes
Slot, binding: Private classes
Slot, binding: Private classes
Slot, bindings: Private classes
Slot, bindings-used-by: Private classes
Slot, bindings-using: Private classes
Slot, body: Private classes
Slot, called-function: Private classes
Slot, called-function: Private classes
Slot, cast-type: Private classes
Slot, compiler-macro-bindings: Private classes
Slot, condition-forms: Private classes
Slot, conflicts: Private classes
Slot, constraints: Private classes
Slot, constraints: Private classes
Slot, ctype: Private classes
Slot, declarations: Private classes
Slot, declarations: Private classes
Slot, declared-type: Private classes
Slot, declared-type: Private classes
Slot, default: Private classes
Slot, dirty: Private classes
Slot, docs: Private classes
Slot, else-form: Private classes
Slot, environment: Private classes
Slot, equiv: Private classes
Slot, expander: Private classes
Slot, expander: Private classes
Slot, expansion: Private classes
Slot, explicit-casts: Private classes
Slot, expression: Private classes
Slot, field: Private classes
Slot, field: Private classes
Slot, final-binding-type-cache: Private classes
Slot, function: Private classes
Slot, function-bindings: Private classes
Slot, function-types: Private classes
Slot, function-types-by-arity: Private classes
Slot, glsl-name: Private classes
Slot, glsl-name: Private classes
Slot, glsl-name: Private classes
Slot, implicit-casts-from: Private classes
Slot, implicit-casts-to: Private classes
Slot, in-type: Private classes
Slot, index: Private classes
Slot, init-forms: Private classes
Slot, initial-value-form: Private classes
Slot, interface-block: Private classes
Slot, interface-qualifier: Private classes
Slot, internal: Private classes
Slot, internal: Private classes
Slot, internal: Private classes
Slot, lambda-list: Private classes
Slot, layout-qualifier: Private classes
Slot, layout-qualifiers: Private classes
Slot, live-uniforms: Private classes
Slot, local-binding-type-data: Private classes
Slot, locked: Private classes
Slot, max-arity: Private classes
Slot, min-arity: Private classes
Slot, min-size: Private classes
Slot, min-size: Private classes
Slot, min-size: Private classes
Slot, modified: Private classes
Slot, modified: Private classes
Slot, modified: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name-map: Private classes
Slot, old-lambda-list: Private classes
Slot, other-type: Private classes
Slot, out-size: Private classes
Slot, out-type: Private classes
Slot, parent-scope: Private classes
Slot, program: Private classes
Slot, qualifiers: Private classes
Slot, raw-arguments: Private classes
Slot, raw-arguments: Private classes
Slot, recompilation-callbacks: Private classes
Slot, return-type: Private classes
Slot, return-type: Private classes
Slot, scalar/vector-set: Private classes
Slot, scalar/vector-size: Private classes
Slot, ssbos: Private classes
Slot, stage: Private classes
Slot, stage-bindings: Private classes
Slot, stages: Private classes
Slot, step-forms: Private classes
Slot, structs: Private classes
Slot, test-form: Private classes
Slot, then-form: Private classes
Slot, type-inference-state: Private classes
Slot, types: Private classes
Slot, types: Private classes
Slot, uniforms: Private classes
Slot, valid-stages: Private classes
Slot, value: Private classes
Slot, value-type: Private classes
Slot, value-type: Private classes
Slot, value-type: Private classes
Slot, value-type: Private classes
Slot, value-type: Private classes
Slot, variable-bindings: Private classes
Slot, version: Private classes
Special Variable, *add-conflict-vars*: Private special variables
Special Variable, *binding-types*: Private special variables
Special Variable, *bound-program*: Private special variables
Special Variable, *check-conflict-vars*: Private special variables
Special Variable, *cl-environment*: Private special variables
Special Variable, *compiler-lock*: Private special variables
Special Variable, *copy-constraints-hash*: Private special variables
Special Variable, *current-function*: Private special variables
Special Variable, *current-function-local-types*: Private special variables
Special Variable, *current-function-return-type*: Private special variables
Special Variable, *current-function-stages*: Private special variables
Special Variable, *current-shader-stage*: Private special variables
Special Variable, *default-backend*: Private special variables
Special Variable, *default-extensions*: Private special variables
Special Variable, *default-recompilation-callback*: Private special variables
Special Variable, *default-version*: Public special variables
Special Variable, *depth*: Private special variables
Special Variable, *environment*: Private special variables
Special Variable, *function-stages*: Private special variables
Special Variable, *global-environment*: Private special variables
Special Variable, *glsl-base-environment*: Private special variables
Special Variable, *in-expression*: Private special variables
Special Variable, *inference-worklist*: Private special variables
Special Variable, *instantiated-overloads*: Private special variables
Special Variable, *interface-qualifier-order*: Private special variables
Special Variable, *internal-function-printers*: Private special variables
Special Variable, *known-declarations*: Private special variables
Special Variable, *live-variables*: Private special variables
Special Variable, *max-depth*: Private special variables
Special Variable, *modified-function-hook*: Public special variables
Special Variable, *new-function-definitions*: Private special variables
Special Variable, *new-global-definitions*: Private special variables
Special Variable, *new-type-definitions*: Private special variables
Special Variable, *package-environments*: Private special variables
Special Variable, *pprint-glsl*: Private special variables
Special Variable, *print-as-main*: Private special variables
Special Variable, *print-shaders*: Private special variables
Special Variable, *shader-program-hook*: Private special variables
Special Variable, *shader-type->stage*: Private special variables
Special Variable, *stage-name-map*: Private special variables
Special Variable, *tree-shaker-current-object*: Private special variables
Special Variable, *tree-shaker-hook*: Private special variables
Special Variable, *tree-shaker-type-hook*: Private special variables
Special Variable, *verbose*: Private special variables
ssbos: Private classes
stage: Private classes
stage-bindings: Private classes
stages: Private classes
step-forms: Private classes
structs: Private classes

T
test-form: Private classes
then-form: Private classes
type-inference-state: Private classes
types: Private classes
types: Private classes

U
uniforms: Private classes

V
valid-stages: Private classes
value: Private classes
value-type: Private classes
value-type: Private classes
value-type: Private classes
value-type: Private classes
value-type: Private classes
variable-bindings: Private classes
version: Private classes


A.4 Data types

Jump to:   3  
A   B   C   E   F   G   I   L   M   O   P   R   S   T   U   V   W  
Index Entry  Section

3
3bgl-glsl: The 3bgl-glsl package
3bgl-glsl/cl: The 3bgl-glsl/cl package
3bgl-shader: The 3bgl-shader system
3bgl-shader.asd: The 3bgl-shader/3bgl-shader․asd file
3bgl-shaders: The 3bgl-shaders package

A
aggregate-type: Private classes
any-type: Private classes
api.lisp: The 3bgl-shader/api․lisp file
array-access: Private classes
array-access-constraint: Private classes
array-initialization: Private classes
array-type: Private classes

B
binding: Private classes
binding-scope: Private classes
binding-with-dependencies: Private classes
bindings: Private classes
builtin-function: Private classes

C
cast-constraint: Private classes
cl-functions.lisp: The 3bgl-shader/cl-functions․lisp file
cl-walker: Private classes
Class, aggregate-type: Private classes
Class, any-type: Private classes
Class, array-access: Private classes
Class, array-access-constraint: Private classes
Class, array-initialization: Private classes
Class, array-type: Private classes
Class, binding: Private classes
Class, binding-scope: Private classes
Class, binding-with-dependencies: Private classes
Class, bindings: Private classes
Class, builtin-function: Private classes
Class, cast-constraint: Private classes
Class, cl-walker: Private classes
Class, concrete-type: Private classes
Class, constant-binding: Private classes
Class, constrained-type: Private classes
Class, constraint: Private classes
Class, ctype/other-constraint: Private classes
Class, environment: Private classes
Class, explicit-progn: Private classes
Class, extract-functions: Private classes
Class, finalize: Private classes
Class, for-loop: Private classes
Class, function-application: Private classes
Class, function-argument: Private classes
Class, function-binding: Private classes
Class, function-binding-function: Private classes
Class, function-call: Private classes
Class, generic-type: Private classes
Class, global-function: Private classes
Class, global-function-constraint: Private classes
Class, global-variable: Private classes
Class, glsl-walker: Private classes
Class, if-form: Private classes
Class, implicit-progn: Private classes
Class, infer-build-constraints: Private classes
Class, inference-call-site: Private classes
Class, initialized-binding: Private classes
Class, interface-binding: Private classes
Class, interface-stage-binding: Private classes
Class, interface-type: Private classes
Class, internal-function: Private classes
Class, local-variable: Private classes
Class, macro-definition: Private classes
Class, optional-arg-type: Private classes
Class, place: Private classes
Class, progn-body: Private classes
Class, ref-type: Private classes
Class, same-base-type-different-size-constraint: Private classes
Class, same-size-different-base-type-constraint: Private classes
Class, same-type-or-scalar-constraint: Private classes
Class, scalar-type-of-constraint: Private classes
Class, shader-program: Private classes
Class, slot-access: Private classes
Class, struct-type: Private classes
Class, swizzle-access: Private classes
Class, symbol-macro: Private classes
Class, tree-shaker: Private classes
Class, unknown-function-binding: Private classes
Class, update-calls: Private classes
Class, variable-arity-function-application: Private classes
Class, variable-binding: Private classes
Class, variable-read: Private classes
Class, variable-write: Private classes
Class, walker: Private classes
compiler.lisp: The 3bgl-shader/compiler․lisp file
concrete-type: Private classes
Condition, incomplete-dependent: Private conditions
Condition, inference-failure: Private conditions
constant-binding: Private classes
constrained-type: Private classes
constraint: Private classes
ctype/other-constraint: Private classes

E
environment: Private classes
explicit-progn: Private classes
extract-functions: Private classes

F
File, 3bgl-shader.asd: The 3bgl-shader/3bgl-shader․asd file
File, api.lisp: The 3bgl-shader/api․lisp file
File, cl-functions.lisp: The 3bgl-shader/cl-functions․lisp file
File, compiler.lisp: The 3bgl-shader/compiler․lisp file
File, finalize-inference.lisp: The 3bgl-shader/finalize-inference․lisp file
File, glsl-base.lisp: The 3bgl-shader/glsl-base․lisp file
File, glsl.lisp: The 3bgl-shader/glsl․lisp file
File, infer.lisp: The 3bgl-shader/infer․lisp file
File, ir.lisp: The 3bgl-shader/ir․lisp file
File, old-utils.lisp: The 3bgl-shader/old-utils․lisp file
File, package.lisp: The 3bgl-shader/package․lisp file
File, printer.lisp: The 3bgl-shader/printer․lisp file
File, types.lisp: The 3bgl-shader/types․lisp file
File, utils.lisp: The 3bgl-shader/utils․lisp file
File, walker.lisp: The 3bgl-shader/walker․lisp file
finalize: Private classes
finalize-inference.lisp: The 3bgl-shader/finalize-inference․lisp file
for-loop: Private classes
function-application: Private classes
function-argument: Private classes
function-binding: Private classes
function-binding-function: Private classes
function-call: Private classes

G
generic-type: Private classes
global-function: Private classes
global-function-constraint: Private classes
global-variable: Private classes
glsl-base.lisp: The 3bgl-shader/glsl-base․lisp file
glsl-walker: Private classes
glsl.lisp: The 3bgl-shader/glsl․lisp file

I
if-form: Private classes
implicit-progn: Private classes
incomplete-dependent: Private conditions
infer-build-constraints: Private classes
infer.lisp: The 3bgl-shader/infer․lisp file
inference-call-site: Private classes
inference-failure: Private conditions
initialized-binding: Private classes
interface-binding: Private classes
interface-stage-binding: Private classes
interface-type: Private classes
internal-function: Private classes
ir.lisp: The 3bgl-shader/ir․lisp file

L
local-variable: Private classes

M
macro-definition: Private classes

O
old-utils.lisp: The 3bgl-shader/old-utils․lisp file
optional-arg-type: Private classes

P
Package, 3bgl-glsl: The 3bgl-glsl package
Package, 3bgl-glsl/cl: The 3bgl-glsl/cl package
Package, 3bgl-shaders: The 3bgl-shaders package
package.lisp: The 3bgl-shader/package․lisp file
place: Private classes
printer.lisp: The 3bgl-shader/printer․lisp file
progn-body: Private classes

R
ref-type: Private classes

S
same-base-type-different-size-constraint: Private classes
same-size-different-base-type-constraint: Private classes
same-type-or-scalar-constraint: Private classes
scalar-type-of-constraint: Private classes
shader-program: Private classes
slot-access: Private classes
struct-type: Private classes
swizzle-access: Private classes
symbol-macro: Private classes
System, 3bgl-shader: The 3bgl-shader system

T
tree-shaker: Private classes
types.lisp: The 3bgl-shader/types․lisp file

U
unknown-function-binding: Private classes
update-calls: Private classes
utils.lisp: The 3bgl-shader/utils․lisp file

V
variable-arity-function-application: Private classes
variable-binding: Private classes
variable-read: Private classes
variable-write: Private classes

W
walker: Private classes
walker.lisp: The 3bgl-shader/walker․lisp file