| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | ! Copyright (C) 2009 Slava Pestov. | 
					
						
							|  |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2009-09-09 23:33:34 -04:00
										 |  |  | USING: accessors assocs cache colors.constants destructors | 
					
						
							|  |  |  | kernel opengl opengl.gl opengl.capabilities combinators images | 
					
						
							|  |  |  | images.tesselation grouping sequences math math.vectors | 
					
						
							|  |  |  | math.matrices generalizations fry arrays namespaces system | 
					
						
							|  |  |  | locals literals specialized-arrays ;
 | 
					
						
							| 
									
										
										
										
											2009-09-27 00:14:57 -04:00
										 |  |  | FROM: alien.c-types => float ;
 | 
					
						
							| 
									
										
										
										
											2009-09-09 23:33:34 -04:00
										 |  |  | SPECIALIZED-ARRAY: float
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | IN: opengl.textures | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:32:45 -04:00
										 |  |  | SYMBOL: non-power-of-2-textures? | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-10 07:18:29 -04:00
										 |  |  | : check-extensions ( -- )
 | 
					
						
							|  |  |  |     #! ATI frglx driver doesn't implement GL_ARB_texture_non_power_of_two properly. | 
					
						
							|  |  |  |     #! See thread 'Linux font display problem' April 2009 on Factor-talk | 
					
						
							|  |  |  |     gl-vendor "ATI Technologies Inc." = not os macosx? or [ | 
					
						
							|  |  |  |         "2.0" { "GL_ARB_texture_non_power_of_two" } | 
					
						
							|  |  |  |         has-gl-version-or-extensions? | 
					
						
							|  |  |  |         non-power-of-2-textures? set
 | 
					
						
							|  |  |  |     ] when ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 05:06:57 -05:00
										 |  |  | : gen-texture ( -- id ) [ glGenTextures ] (gen-gl-object) ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : delete-texture ( id -- ) [ glDeleteTextures ] (delete-gl-object) ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | ERROR: unsupported-component-order component-order component-type ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CONSTANT: image-internal-formats H{ | 
					
						
							|  |  |  |     { { A         ubyte-components          } $ GL_ALPHA8            } | 
					
						
							|  |  |  |     { { A         ushort-components         } $ GL_ALPHA16           } | 
					
						
							|  |  |  |     { { A         half-components           } $ GL_ALPHA16F_ARB      } | 
					
						
							|  |  |  |     { { A         float-components          } $ GL_ALPHA32F_ARB      } | 
					
						
							|  |  |  |     { { A         byte-integer-components   } $ GL_ALPHA8I_EXT       } | 
					
						
							|  |  |  |     { { A         ubyte-integer-components  } $ GL_ALPHA8UI_EXT      } | 
					
						
							|  |  |  |     { { A         short-integer-components  } $ GL_ALPHA16I_EXT      } | 
					
						
							|  |  |  |     { { A         ushort-integer-components } $ GL_ALPHA16UI_EXT     } | 
					
						
							|  |  |  |     { { A         int-integer-components    } $ GL_ALPHA32I_EXT      } | 
					
						
							|  |  |  |     { { A         uint-integer-components   } $ GL_ALPHA32UI_EXT     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     { { L         ubyte-components          } $ GL_LUMINANCE8        } | 
					
						
							|  |  |  |     { { L         ushort-components         } $ GL_LUMINANCE16       } | 
					
						
							|  |  |  |     { { L         half-components           } $ GL_LUMINANCE16F_ARB  } | 
					
						
							|  |  |  |     { { L         float-components          } $ GL_LUMINANCE32F_ARB  } | 
					
						
							|  |  |  |     { { L         byte-integer-components   } $ GL_LUMINANCE8I_EXT   } | 
					
						
							|  |  |  |     { { L         ubyte-integer-components  } $ GL_LUMINANCE8UI_EXT  } | 
					
						
							|  |  |  |     { { L         short-integer-components  } $ GL_LUMINANCE16I_EXT  } | 
					
						
							|  |  |  |     { { L         ushort-integer-components } $ GL_LUMINANCE16UI_EXT } | 
					
						
							|  |  |  |     { { L         int-integer-components    } $ GL_LUMINANCE32I_EXT  } | 
					
						
							|  |  |  |     { { L         uint-integer-components   } $ GL_LUMINANCE32UI_EXT } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     { { R         ubyte-components          } $ GL_R8    } | 
					
						
							|  |  |  |     { { R         ushort-components         } $ GL_R16   } | 
					
						
							|  |  |  |     { { R         half-components           } $ GL_R16F  } | 
					
						
							|  |  |  |     { { R         float-components          } $ GL_R32F  } | 
					
						
							|  |  |  |     { { R         byte-integer-components   } $ GL_R8I   } | 
					
						
							|  |  |  |     { { R         ubyte-integer-components  } $ GL_R8UI  } | 
					
						
							|  |  |  |     { { R         short-integer-components  } $ GL_R16I  } | 
					
						
							|  |  |  |     { { R         ushort-integer-components } $ GL_R16UI } | 
					
						
							|  |  |  |     { { R         int-integer-components    } $ GL_R32I  } | 
					
						
							|  |  |  |     { { R         uint-integer-components   } $ GL_R32UI } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     { { INTENSITY ubyte-components          } $ GL_INTENSITY8        } | 
					
						
							|  |  |  |     { { INTENSITY ushort-components         } $ GL_INTENSITY16       } | 
					
						
							|  |  |  |     { { INTENSITY half-components           } $ GL_INTENSITY16F_ARB  } | 
					
						
							|  |  |  |     { { INTENSITY float-components          } $ GL_INTENSITY32F_ARB  } | 
					
						
							|  |  |  |     { { INTENSITY byte-integer-components   } $ GL_INTENSITY8I_EXT   } | 
					
						
							|  |  |  |     { { INTENSITY ubyte-integer-components  } $ GL_INTENSITY8UI_EXT  } | 
					
						
							|  |  |  |     { { INTENSITY short-integer-components  } $ GL_INTENSITY16I_EXT  } | 
					
						
							|  |  |  |     { { INTENSITY ushort-integer-components } $ GL_INTENSITY16UI_EXT } | 
					
						
							|  |  |  |     { { INTENSITY int-integer-components    } $ GL_INTENSITY32I_EXT  } | 
					
						
							|  |  |  |     { { INTENSITY uint-integer-components   } $ GL_INTENSITY32UI_EXT } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     { { DEPTH     ushort-components         } $ GL_DEPTH_COMPONENT16  } | 
					
						
							|  |  |  |     { { DEPTH     u-24-components           } $ GL_DEPTH_COMPONENT24  } | 
					
						
							|  |  |  |     { { DEPTH     uint-components           } $ GL_DEPTH_COMPONENT32  } | 
					
						
							|  |  |  |     { { DEPTH     float-components          } $ GL_DEPTH_COMPONENT32F } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     { { LA        ubyte-components          } $ GL_LUMINANCE8_ALPHA8       } | 
					
						
							|  |  |  |     { { LA        ushort-components         } $ GL_LUMINANCE16_ALPHA16     } | 
					
						
							|  |  |  |     { { LA        half-components           } $ GL_LUMINANCE_ALPHA16F_ARB  } | 
					
						
							|  |  |  |     { { LA        float-components          } $ GL_LUMINANCE_ALPHA32F_ARB  } | 
					
						
							|  |  |  |     { { LA        byte-integer-components   } $ GL_LUMINANCE_ALPHA8I_EXT   } | 
					
						
							|  |  |  |     { { LA        ubyte-integer-components  } $ GL_LUMINANCE_ALPHA8UI_EXT  } | 
					
						
							|  |  |  |     { { LA        short-integer-components  } $ GL_LUMINANCE_ALPHA16I_EXT  } | 
					
						
							|  |  |  |     { { LA        ushort-integer-components } $ GL_LUMINANCE_ALPHA16UI_EXT } | 
					
						
							|  |  |  |     { { LA        int-integer-components    } $ GL_LUMINANCE_ALPHA32I_EXT  } | 
					
						
							|  |  |  |     { { LA        uint-integer-components   } $ GL_LUMINANCE_ALPHA32UI_EXT } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     { { RG        ubyte-components          } $ GL_RG8    } | 
					
						
							|  |  |  |     { { RG        ushort-components         } $ GL_RG16   } | 
					
						
							|  |  |  |     { { RG        half-components           } $ GL_RG16F  } | 
					
						
							|  |  |  |     { { RG        float-components          } $ GL_RG32F  } | 
					
						
							|  |  |  |     { { RG        byte-integer-components   } $ GL_RG8I   } | 
					
						
							|  |  |  |     { { RG        ubyte-integer-components  } $ GL_RG8UI  } | 
					
						
							|  |  |  |     { { RG        short-integer-components  } $ GL_RG16I  } | 
					
						
							|  |  |  |     { { RG        ushort-integer-components } $ GL_RG16UI } | 
					
						
							|  |  |  |     { { RG        int-integer-components    } $ GL_RG32I  } | 
					
						
							|  |  |  |     { { RG        uint-integer-components   } $ GL_RG32UI } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     { { DEPTH-STENCIL u-24-8-components       } $ GL_DEPTH24_STENCIL8 } | 
					
						
							|  |  |  |     { { DEPTH-STENCIL float-32-u-8-components } $ GL_DEPTH32F_STENCIL8 } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     { { RGB       ubyte-components          } $ GL_RGB8               } | 
					
						
							|  |  |  |     { { RGB       ushort-components         } $ GL_RGB16              } | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     { { RGB       half-components           } $ GL_RGB16F         } | 
					
						
							|  |  |  |     { { RGB       float-components          } $ GL_RGB32F         } | 
					
						
							|  |  |  |     { { RGB       byte-integer-components   } $ GL_RGB8I          } | 
					
						
							|  |  |  |     { { RGB       ubyte-integer-components  } $ GL_RGB8UI         } | 
					
						
							|  |  |  |     { { RGB       byte-integer-components   } $ GL_RGB8I          } | 
					
						
							|  |  |  |     { { RGB       ubyte-integer-components  } $ GL_RGB8UI         } | 
					
						
							|  |  |  |     { { RGB       short-integer-components  } $ GL_RGB16I         } | 
					
						
							|  |  |  |     { { RGB       ushort-integer-components } $ GL_RGB16UI        } | 
					
						
							|  |  |  |     { { RGB       int-integer-components    } $ GL_RGB32I         } | 
					
						
							|  |  |  |     { { RGB       uint-integer-components   } $ GL_RGB32UI        } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  |     { { RGB       u-5-6-5-components        } $ GL_RGB5               } | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     { { RGB       u-9-9-9-e5-components     } $ GL_RGB9_E5        } | 
					
						
							|  |  |  |     { { RGB       float-11-11-10-components } $ GL_R11F_G11F_B10F } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     { { RGBA      ubyte-components          } $ GL_RGBA8              } | 
					
						
							|  |  |  |     { { RGBA      ushort-components         } $ GL_RGBA16             } | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     { { RGBA      half-components           } $ GL_RGBA16F        } | 
					
						
							|  |  |  |     { { RGBA      float-components          } $ GL_RGBA32F        } | 
					
						
							|  |  |  |     { { RGBA      byte-integer-components   } $ GL_RGBA8I         } | 
					
						
							|  |  |  |     { { RGBA      ubyte-integer-components  } $ GL_RGBA8UI        } | 
					
						
							|  |  |  |     { { RGBA      byte-integer-components   } $ GL_RGBA8I         } | 
					
						
							|  |  |  |     { { RGBA      ubyte-integer-components  } $ GL_RGBA8UI        } | 
					
						
							|  |  |  |     { { RGBA      short-integer-components  } $ GL_RGBA16I        } | 
					
						
							|  |  |  |     { { RGBA      ushort-integer-components } $ GL_RGBA16UI       } | 
					
						
							|  |  |  |     { { RGBA      int-integer-components    } $ GL_RGBA32I        } | 
					
						
							|  |  |  |     { { RGBA      uint-integer-components   } $ GL_RGBA32UI       } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  |     { { RGBA      u-5-5-5-1-components      } $ GL_RGB5_A1            } | 
					
						
							|  |  |  |     { { RGBA      u-10-10-10-2-components   } $ GL_RGB10_A2           } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GENERIC: fix-internal-component-order ( order -- order' )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: object fix-internal-component-order ;
 | 
					
						
							|  |  |  | M: BGR fix-internal-component-order drop RGB ;
 | 
					
						
							|  |  |  | M: BGRA fix-internal-component-order drop RGBA ;
 | 
					
						
							|  |  |  | M: ARGB fix-internal-component-order drop RGBA ;
 | 
					
						
							|  |  |  | M: ABGR fix-internal-component-order drop RGBA ;
 | 
					
						
							|  |  |  | M: RGBX fix-internal-component-order drop RGBA ;
 | 
					
						
							|  |  |  | M: BGRX fix-internal-component-order drop RGBA ;
 | 
					
						
							|  |  |  | M: XRGB fix-internal-component-order drop RGBA ;
 | 
					
						
							|  |  |  | M: XBGR fix-internal-component-order drop RGBA ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : image-internal-format ( component-order component-type -- internal-format )
 | 
					
						
							|  |  |  |     2dup
 | 
					
						
							|  |  |  |     [ fix-internal-component-order ] dip 2array image-internal-formats at
 | 
					
						
							|  |  |  |     [ 2nip ] [ unsupported-component-order ] if* ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : reversed-type? ( component-type -- ? )
 | 
					
						
							|  |  |  |     { u-9-9-9-e5-components float-11-11-10-components } member? ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : (component-order>format) ( component-order component-type -- gl-format )
 | 
					
						
							|  |  |  |     dup unnormalized-integer-components? [ | 
					
						
							|  |  |  |         swap { | 
					
						
							|  |  |  |             { A [ drop GL_ALPHA_INTEGER_EXT ] } | 
					
						
							|  |  |  |             { L [ drop GL_LUMINANCE_INTEGER_EXT ] } | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |             { R [ drop GL_RED_INTEGER ] } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  |             { LA [ drop GL_LUMINANCE_ALPHA_INTEGER_EXT ] } | 
					
						
							|  |  |  |             { RG [ drop GL_RG_INTEGER ] } | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |             { BGR [ drop GL_BGR_INTEGER ] } | 
					
						
							|  |  |  |             { RGB [ drop GL_RGB_INTEGER ] } | 
					
						
							|  |  |  |             { BGRA [ drop GL_BGRA_INTEGER ] } | 
					
						
							|  |  |  |             { RGBA [ drop GL_RGBA_INTEGER ] } | 
					
						
							|  |  |  |             { BGRX [ drop GL_BGRA_INTEGER ] } | 
					
						
							|  |  |  |             { RGBX [ drop GL_RGBA_INTEGER ] } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  |             [ swap unsupported-component-order ] | 
					
						
							|  |  |  |         } case
 | 
					
						
							|  |  |  |     ] [ | 
					
						
							|  |  |  |         swap { | 
					
						
							|  |  |  |             { A [ drop GL_ALPHA ] } | 
					
						
							|  |  |  |             { L [ drop GL_LUMINANCE ] } | 
					
						
							|  |  |  |             { R [ drop GL_RED ] } | 
					
						
							|  |  |  |             { LA [ drop GL_LUMINANCE_ALPHA ] } | 
					
						
							|  |  |  |             { RG [ drop GL_RG ] } | 
					
						
							|  |  |  |             { BGR [ reversed-type? GL_RGB GL_BGR ? ] } | 
					
						
							|  |  |  |             { RGB [ reversed-type? GL_BGR GL_RGB ? ] } | 
					
						
							|  |  |  |             { BGRA [ drop GL_BGRA ] } | 
					
						
							|  |  |  |             { RGBA [ drop GL_RGBA ] } | 
					
						
							|  |  |  |             { ARGB [ drop GL_BGRA ] } | 
					
						
							|  |  |  |             { ABGR [ drop GL_RGBA ] } | 
					
						
							|  |  |  |             { BGRX [ drop GL_BGRA ] } | 
					
						
							|  |  |  |             { RGBX [ drop GL_RGBA ] } | 
					
						
							|  |  |  |             { XRGB [ drop GL_BGRA ] } | 
					
						
							|  |  |  |             { XBGR [ drop GL_RGBA ] } | 
					
						
							|  |  |  |             { INTENSITY [ drop GL_INTENSITY ] } | 
					
						
							|  |  |  |             { DEPTH [ drop GL_DEPTH_COMPONENT ] } | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |             { DEPTH-STENCIL [ drop GL_DEPTH_STENCIL ] } | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  |             [ swap unsupported-component-order ] | 
					
						
							|  |  |  |         } case
 | 
					
						
							|  |  |  |     ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GENERIC: (component-type>type) ( component-order component-type -- gl-type )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: object (component-type>type) unsupported-component-order ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : four-channel-alpha-first? ( component-order component-type -- ? )
 | 
					
						
							|  |  |  |     over component-count 4 =
 | 
					
						
							|  |  |  |     [ drop alpha-channel-precedes-colors? ] | 
					
						
							| 
									
										
										
										
											2009-06-22 12:20:54 -04:00
										 |  |  |     [ unsupported-component-order ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | : not-alpha-first ( component-order component-type -- )
 | 
					
						
							|  |  |  |     over alpha-channel-precedes-colors? | 
					
						
							|  |  |  |     [ unsupported-component-order ] | 
					
						
							|  |  |  |     [ 2drop ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: ubyte-components          (component-type>type) | 
					
						
							|  |  |  |     drop alpha-channel-precedes-colors? | 
					
						
							|  |  |  |     [ GL_UNSIGNED_INT_8_8_8_8_REV ] | 
					
						
							|  |  |  |     [ GL_UNSIGNED_BYTE ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: ushort-components         (component-type>type) not-alpha-first GL_UNSIGNED_SHORT ;
 | 
					
						
							|  |  |  | M: uint-components           (component-type>type) not-alpha-first GL_UNSIGNED_INT   ;
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  | M: half-components           (component-type>type) not-alpha-first GL_HALF_FLOAT ;
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | M: float-components          (component-type>type) not-alpha-first GL_FLOAT          ;
 | 
					
						
							|  |  |  | M: byte-integer-components   (component-type>type) not-alpha-first GL_BYTE           ;
 | 
					
						
							|  |  |  | M: ubyte-integer-components  (component-type>type) not-alpha-first GL_UNSIGNED_BYTE  ;
 | 
					
						
							|  |  |  | M: short-integer-components  (component-type>type) not-alpha-first GL_SHORT          ;
 | 
					
						
							|  |  |  | M: ushort-integer-components (component-type>type) not-alpha-first GL_UNSIGNED_SHORT ;
 | 
					
						
							|  |  |  | M: int-integer-components    (component-type>type) not-alpha-first GL_INT            ;
 | 
					
						
							|  |  |  | M: uint-integer-components   (component-type>type) not-alpha-first GL_UNSIGNED_INT   ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: u-5-5-5-1-components      (component-type>type) | 
					
						
							|  |  |  |     four-channel-alpha-first? | 
					
						
							|  |  |  |     [ GL_UNSIGNED_SHORT_1_5_5_5_REV ] | 
					
						
							|  |  |  |     [ GL_UNSIGNED_SHORT_5_5_5_1     ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: u-5-6-5-components        (component-type>type) 2drop GL_UNSIGNED_SHORT_5_6_5 ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: u-10-10-10-2-components   (component-type>type) | 
					
						
							|  |  |  |     four-channel-alpha-first? | 
					
						
							|  |  |  |     [ GL_UNSIGNED_INT_2_10_10_10_REV ] | 
					
						
							|  |  |  |     [ GL_UNSIGNED_INT_10_10_10_2     ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | M: u-24-components           (component-type>type) | 
					
						
							|  |  |  |     over DEPTH =
 | 
					
						
							|  |  |  |     [ 2drop GL_UNSIGNED_INT ] [ unsupported-component-order ] if ;
 | 
					
						
							| 
									
										
										
										
											2009-06-22 12:20:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | M: u-24-8-components         (component-type>type) | 
					
						
							|  |  |  |     over DEPTH-STENCIL =
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     [ 2drop GL_UNSIGNED_INT_24_8 ] [ unsupported-component-order ] if ;
 | 
					
						
							| 
									
										
										
										
											2009-06-22 12:20:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | M: u-9-9-9-e5-components     (component-type>type) | 
					
						
							|  |  |  |     over BGR =
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     [ 2drop GL_UNSIGNED_INT_5_9_9_9_REV ] [ unsupported-component-order ] if ;
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: float-11-11-10-components (component-type>type) | 
					
						
							|  |  |  |     over BGR =
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:28:37 -04:00
										 |  |  |     [ 2drop GL_UNSIGNED_INT_10F_11F_11F_REV ] [ unsupported-component-order ] if ;
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : image-data-format ( component-order component-type -- gl-format gl-type )
 | 
					
						
							|  |  |  |     [ (component-order>format) ] [ (component-type>type) ] 2bi ;
 | 
					
						
							| 
									
										
										
										
											2009-02-19 05:06:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  | SLOT: display-list | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : draw-texture ( texture -- ) display-list>> [ glCallList ] when* ;
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | GENERIC: draw-scaled-texture ( dim texture -- )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-07 20:46:42 -04:00
										 |  |  | DEFER: make-texture | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 09:26:30 -04:00
										 |  |  | : (image-format) ( component-order component-type -- internal-format format type )
 | 
					
						
							|  |  |  |     [ image-internal-format ] [ image-data-format ] 2bi ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : image-format ( image -- internal-format format type )
 | 
					
						
							|  |  |  |     [ component-order>> ] [ component-type>> ] bi (image-format) ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-10 17:58:35 -04:00
										 |  |  | <PRIVATE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-24 03:26:13 -04:00
										 |  |  | TUPLE: single-texture < disposable image dim loc texture-coords texture display-list ;
 | 
					
						
							| 
									
										
										
										
											2009-02-19 06:01:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:32:45 -04:00
										 |  |  | : adjust-texture-dim ( dim -- dim' )
 | 
					
						
							|  |  |  |     non-power-of-2-textures? get [ | 
					
						
							| 
									
										
										
										
											2009-04-19 04:06:05 -04:00
										 |  |  |         [ dup 1 = [ next-power-of-2 ] unless ] map
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:32:45 -04:00
										 |  |  |     ] unless ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-22 12:20:54 -04:00
										 |  |  | :: tex-image ( image bitmap -- )
 | 
					
						
							| 
									
										
										
										
											2009-10-28 17:11:33 -04:00
										 |  |  |     image image-format :> ( internal-format format type )
 | 
					
						
							| 
									
										
										
										
											2009-06-22 12:20:54 -04:00
										 |  |  |     GL_TEXTURE_2D 0 internal-format | 
					
						
							|  |  |  |     image dim>> adjust-texture-dim first2 0
 | 
					
						
							|  |  |  |     format type bitmap glTexImage2D ;
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-10 16:23:57 -04:00
										 |  |  | : tex-sub-image ( image -- )
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  |     [ GL_TEXTURE_2D 0 0 0 ] dip
 | 
					
						
							| 
									
										
										
										
											2009-06-10 16:23:57 -04:00
										 |  |  |     [ dim>> first2 ] | 
					
						
							| 
									
										
										
										
											2009-06-22 12:20:54 -04:00
										 |  |  |     [ image-format [ drop ] 2dip ] | 
					
						
							| 
									
										
										
										
											2009-06-10 16:23:57 -04:00
										 |  |  |     [ bitmap>> ] tri
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  |     glTexSubImage2D ;
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-19 05:06:57 -05:00
										 |  |  | : init-texture ( -- )
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  |     GL_TEXTURE_2D GL_TEXTURE_MAG_FILTER GL_NEAREST glTexParameteri | 
					
						
							|  |  |  |     GL_TEXTURE_2D GL_TEXTURE_MIN_FILTER GL_NEAREST glTexParameteri | 
					
						
							| 
									
										
										
										
											2009-04-04 23:38:49 -04:00
										 |  |  |     GL_TEXTURE_2D GL_TEXTURE_WRAP_S GL_REPEAT glTexParameteri | 
					
						
							|  |  |  |     GL_TEXTURE_2D GL_TEXTURE_WRAP_T GL_REPEAT glTexParameteri ;
 | 
					
						
							| 
									
										
										
										
											2009-02-19 05:06:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | : with-texturing ( quot -- )
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  |     GL_TEXTURE_2D [ | 
					
						
							|  |  |  |         GL_TEXTURE_BIT [ | 
					
						
							|  |  |  |             GL_TEXTURE_COORD_ARRAY [ | 
					
						
							|  |  |  |                 COLOR: white gl-color | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  |                 call
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  |             ] do-enabled-client-state | 
					
						
							|  |  |  |         ] do-attribs | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  |     ] do-enabled ; inline
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : (draw-textured-rect) ( dim texture -- )
 | 
					
						
							|  |  |  |     [ loc>> ] | 
					
						
							|  |  |  |     [ [ GL_TEXTURE_2D ] dip texture>> glBindTexture ] | 
					
						
							|  |  |  |     [ init-texture texture-coords>> gl-texture-coord-pointer ] tri
 | 
					
						
							|  |  |  |     swap gl-fill-rect ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : draw-textured-rect ( dim texture -- )
 | 
					
						
							|  |  |  |     [ | 
					
						
							| 
									
										
										
										
											2009-04-03 08:01:22 -04:00
										 |  |  |         [ image>> has-alpha? [ GL_BLEND glDisable ] unless ] | 
					
						
							|  |  |  |         [ (draw-textured-rect) GL_TEXTURE_2D 0 glBindTexture ] | 
					
						
							|  |  |  |         [ image>> has-alpha? [ GL_BLEND glEnable ] unless ] | 
					
						
							|  |  |  |         tri
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  |     ] with-texturing ;
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 08:01:22 -04:00
										 |  |  | : texture-coords ( texture -- coords )
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:32:45 -04:00
										 |  |  |     [ [ dim>> ] [ image>> dim>> adjust-texture-dim ] bi v/ ] | 
					
						
							| 
									
										
										
										
											2009-04-03 08:01:22 -04:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2009-04-04 23:45:02 -04:00
										 |  |  |         image>> upside-down?>> | 
					
						
							|  |  |  |         { { 0 1 } { 1 1 } { 1 0 } { 0 0 } } | 
					
						
							|  |  |  |         { { 0 0 } { 1 0 } { 1 1 } { 0 1 } } ?
 | 
					
						
							|  |  |  |     ] bi
 | 
					
						
							|  |  |  |     [ v* ] with map float-array{ } join ;
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-20 21:53:51 -05:00
										 |  |  | : make-texture-display-list ( texture -- dlist )
 | 
					
						
							|  |  |  |     GL_COMPILE [ [ dim>> ] keep draw-textured-rect ] make-dlist ;
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  | : <single-texture> ( image loc -- texture )
 | 
					
						
							| 
									
										
										
										
											2009-08-24 03:26:13 -04:00
										 |  |  |     single-texture new-disposable swap >>loc swap [ >>image ] [ dim>> >>dim ] bi
 | 
					
						
							| 
									
										
										
										
											2009-04-03 08:01:22 -04:00
										 |  |  |     dup image>> dim>> product 0 = [ | 
					
						
							|  |  |  |         dup texture-coords >>texture-coords | 
					
						
							|  |  |  |         dup image>> make-texture >>texture | 
					
						
							| 
									
										
										
										
											2009-02-20 21:53:51 -05:00
										 |  |  |         dup make-texture-display-list >>display-list | 
					
						
							|  |  |  |     ] unless ;
 | 
					
						
							| 
									
										
										
										
											2009-02-12 04:58:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | M: single-texture dispose* | 
					
						
							| 
									
										
										
										
											2009-02-19 05:06:57 -05:00
										 |  |  |     [ texture>> [ delete-texture ] when* ] | 
					
						
							|  |  |  |     [ display-list>> [ delete-dlist ] when* ] bi ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | M: single-texture draw-scaled-texture | 
					
						
							| 
									
										
										
										
											2009-04-17 00:14:41 -04:00
										 |  |  |     2dup dim>> = [ nip draw-texture ] [ | 
					
						
							|  |  |  |         dup texture>> [ draw-textured-rect ] [ 2drop ] if
 | 
					
						
							|  |  |  |     ] if ;
 | 
					
						
							| 
									
										
										
										
											2009-02-19 05:06:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-24 03:26:13 -04:00
										 |  |  | TUPLE: multi-texture < disposable grid display-list loc ;
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : image-locs ( image-grid -- loc-grid )
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  |     [ first [ dim>> first ] map ] [ [ first dim>> second ] map ] bi
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  |     [ 0 [ + ] accumulate nip ] bi@
 | 
					
						
							|  |  |  |     cross-zip flip ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : <texture-grid> ( image-grid loc -- grid )
 | 
					
						
							|  |  |  |     [ dup image-locs ] dip
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  |     '[ [ _ v+ <single-texture> |dispose ] 2map ] 2map ;
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 08:01:22 -04:00
										 |  |  | : grid-has-alpha? ( grid -- ? )
 | 
					
						
							|  |  |  |     first first image>> has-alpha? ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | : make-textured-grid-display-list ( grid -- dlist )
 | 
					
						
							|  |  |  |     GL_COMPILE [ | 
					
						
							|  |  |  |         [ | 
					
						
							| 
									
										
										
										
											2009-04-03 08:01:22 -04:00
										 |  |  |             [ grid-has-alpha? [ GL_BLEND glDisable ] unless ] | 
					
						
							|  |  |  |             [ [ [ [ dim>> ] keep (draw-textured-rect) ] each ] each ] | 
					
						
							|  |  |  |             [ grid-has-alpha? [ GL_BLEND glEnable ] unless ] tri
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  |             GL_TEXTURE_2D 0 glBindTexture | 
					
						
							|  |  |  |         ] with-texturing | 
					
						
							|  |  |  |     ] make-dlist ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : <multi-texture> ( image-grid loc -- multi-texture )
 | 
					
						
							|  |  |  |     [ | 
					
						
							| 
									
										
										
										
											2009-08-24 03:26:13 -04:00
										 |  |  |         [ multi-texture new-disposable ] 2dip
 | 
					
						
							|  |  |  |         [ nip >>loc ] [ <texture-grid> >>grid ] 2bi
 | 
					
						
							|  |  |  |         dup grid>> make-textured-grid-display-list >>display-list | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  |     ] with-destructors ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-17 00:14:41 -04:00
										 |  |  | M: multi-texture draw-scaled-texture nip draw-texture ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | M: multi-texture dispose* grid>> [ [ dispose ] each ] each ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 08:01:22 -04:00
										 |  |  | CONSTANT: max-texture-size { 512 512 } | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | PRIVATE>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-07 20:46:42 -04:00
										 |  |  | : make-texture ( image -- id )
 | 
					
						
							|  |  |  |     #! We use glTexSubImage2D to work around the power of 2 texture size | 
					
						
							|  |  |  |     #! limitation | 
					
						
							|  |  |  |     gen-texture [ | 
					
						
							|  |  |  |         GL_TEXTURE_BIT [ | 
					
						
							|  |  |  |             GL_TEXTURE_2D swap glBindTexture | 
					
						
							|  |  |  |             non-power-of-2-textures? get
 | 
					
						
							| 
									
										
										
										
											2009-06-10 16:23:57 -04:00
										 |  |  |             [ dup bitmap>> tex-image ] | 
					
						
							|  |  |  |             [ [ f tex-image ] [ tex-sub-image ] bi ] if
 | 
					
						
							| 
									
										
										
										
											2009-05-07 20:46:42 -04:00
										 |  |  |         ] do-attribs | 
					
						
							|  |  |  |     ] keep ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-04 21:04:35 -04:00
										 |  |  | : <texture> ( image loc -- texture )
 | 
					
						
							|  |  |  |     over dim>> max-texture-size [ <= ] 2all?
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  |     [ <single-texture> ] | 
					
						
							| 
									
										
										
										
											2009-04-09 11:44:50 -04:00
										 |  |  |     [ [ max-texture-size tesselate ] dip <multi-texture> ] if ;
 |