added hack to specialize certain resources
This commit is contained in:
parent
ea793a1009
commit
27552665e1
|
@ -4,10 +4,22 @@
|
||||||
(planet dyoo/whalesong/image))
|
(planet dyoo/whalesong/image))
|
||||||
|
|
||||||
(define-resource whale-resource "images/humpback.jpg")
|
(define-resource whale-resource "images/humpback.jpg")
|
||||||
|
(define-resource self-resource "using-resources.rkt")
|
||||||
|
|
||||||
(define whale-image
|
(define whale-image
|
||||||
(image-url
|
(image-url
|
||||||
(resource->url whale-resource)))
|
(resource->url whale-resource)))
|
||||||
|
|
||||||
whale-image
|
(list whale-image whale-image)
|
||||||
whale-image
|
(resource? whale-image)
|
||||||
|
(image? whale-image)
|
||||||
|
|
||||||
|
|
||||||
|
(list whale-resource whale-resource)
|
||||||
|
(resource? whale-resource)
|
||||||
|
(image? whale-resource)
|
||||||
|
|
||||||
|
|
||||||
|
(list self-resource self-resource)
|
||||||
|
(resource? self-resource)
|
||||||
|
(image? self-resource)
|
||||||
|
|
|
@ -70,12 +70,6 @@ var isPointsCount = function(x) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var imageSignature = { updatePinhole : function() {},
|
|
||||||
getHeight : function() {},
|
|
||||||
getWidth: function() {},
|
|
||||||
getBaseline : function() {},
|
|
||||||
render: function() {} };
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Produces true if thing is an image-like object.
|
// Produces true if thing is an image-like object.
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
(provide define-resource)
|
(provide define-resource)
|
||||||
|
|
||||||
(require "structs.rkt")
|
(require "structs.rkt")
|
||||||
|
(require "specialize/impl.rkt")
|
||||||
|
|
||||||
|
|
||||||
;; file-resource:
|
;; file-resource:
|
||||||
|
@ -45,4 +46,5 @@
|
||||||
(record-resource resolved-module-path normal-path munged-path)))
|
(record-resource resolved-module-path normal-path munged-path)))
|
||||||
|
|
||||||
;; Run time code
|
;; Run time code
|
||||||
(define name (resource normal-path munged-path content))))))]))
|
(define name (specialize!
|
||||||
|
(resource normal-path munged-path content)))))))]))
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#lang s-exp "../lang/kernel.rkt"
|
#lang s-exp "../lang/kernel.rkt"
|
||||||
|
|
||||||
(require "compile-time.rkt"
|
(require "compile-time.rkt"
|
||||||
"runtime.rkt")
|
"runtime.rkt"
|
||||||
|
"structs.rkt")
|
||||||
(provide (all-from-out "compile-time.rkt"
|
(provide (all-from-out "compile-time.rkt"
|
||||||
"runtime.rkt"))
|
"runtime.rkt")
|
||||||
|
resource?)
|
||||||
|
|
8
resource/specialize/impl.rkt
Normal file
8
resource/specialize/impl.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang s-exp "../../lang/js/js.rkt"
|
||||||
|
|
||||||
|
(require "../structs.rkt")
|
||||||
|
|
||||||
|
(declare-implementation
|
||||||
|
#:racket "racket-impl.rkt"
|
||||||
|
#:javascript ("js-impl.js")
|
||||||
|
#:provided-values (specialize!))
|
5
resource/specialize/racket-impl.rkt
Normal file
5
resource/specialize/racket-impl.rkt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#lang racket/base
|
||||||
|
(provide specialize!)
|
||||||
|
|
||||||
|
(define (specialize! resource)
|
||||||
|
resource)
|
Loading…
Reference in New Issue
Block a user