René's URL Explorer Experiment


Title: Floating point / HDR texture support · Issue #1324 · processing/processing4 · GitHub

Open Graph Title: Floating point / HDR texture support · Issue #1324 · processing/processing4

X Title: Floating point / HDR texture support · Issue #1324 · processing/processing4

Description: Processing is tightly coupled to ARGB 8-bit textures via the PImage class hierarchy. When the project started, the only crossplatform drawing lib available in the JDK was AWT/Java2D. Those APIs expose pixels as int in ARGB (TYPE_INT_ARGB...

Open Graph Description: Processing is tightly coupled to ARGB 8-bit textures via the PImage class hierarchy. When the project started, the only crossplatform drawing lib available in the JDK was AWT/Java2D. Those APIs exp...

X Description: Processing is tightly coupled to ARGB 8-bit textures via the PImage class hierarchy. When the project started, the only crossplatform drawing lib available in the JDK was AWT/Java2D. Those APIs exp...

Opengraph URL: https://github.com/processing/processing4/issues/1324

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Floating point / HDR texture support","articleBody":"Processing is tightly coupled to ARGB 8-bit textures via the `PImage` class hierarchy. When the project started, the only crossplatform drawing lib available in the JDK was AWT/Java2D. Those APIs expose pixels as int in ARGB ([`TYPE_INT_ARGB`/`TYPE_INT_RGB`](https://docs.oracle.com/javase/8/docs/api/java/awt/image/BufferedImage.html#getRGB-int-int-)), and [`java.awt.Color`](https://docs.oracle.com/javase/8/docs/api/java/awt/Color.html) wraps 0–255 channels. That layout provides zero copy access, blits via `MemoryImageSource`, and compatibility with other AWT stuff that's used pervasively throughout the codebase.\n \nEvery part of Processing assumes pixel data is stored as 32‑bit ints with 8‑bit channels. That assumption is baked into our public API (the \"pixels\" array) and is all over the place inside `PGraphics`, image filters, tessellators, OpenGL and future WebGPU backends, and font/shape caches, etc. Because there is no abstraction around \"pixel format\" or \"color storage\", any attempt to add floating point textures would require touching practically every file, amounting in an effective soft-fork.\n\n## Deep coupling\n\nHere are some more specific issues:\n\n- `int[] pixels` is exposed as public state and could be used from user sketches all the way down to renderer internals. Every consumer assumes 4 bytes per pixel with the same layout. Public fields are particularly problematic in Java as they can't really be overridden, just shadowed. \nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PImage.java#L92\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PApplet.java#L222\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGraphicsOpenGL.java#L5379-L5386\n\n- Color math is hardcoded to obtuse bit manipulation and 0–255 ranges eg `colorCalc` packs/unpacks ints, `PShape` duplicates this, and image blending/filtering is doing lots of `\u003e\u003e\u003e 24` \u0026 masks.\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PGraphics.java#L7631-L7638\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PGraphics.java#L7680-L7735\nhttps://github.com/processing/processing4/blob/main/core/src/processing/core/PShape.java#L3514\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PImage.java#L2471-L2480\n\n- GPU texture uploads/downloads are always `int[]` → `IntBuffer` → `GL_RGBA`/`GL_UNSIGNED_BYTE`. See `Texture.set`/`setNative`, the `texSubImage2D(...PGL.RGBA, PGL.UNSIGNED_BYTE...)` calls, the `rgbaPixels` conversions that only handle ARGB/RGB/ALPHA ints and the `updatePixelBuffer` `IntBuffer` path.\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L303-L305\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L346-L347\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L1000-L1061\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L792-L795\n\n- Moving data between CPU pixels and GPU buffers is just \"reinterpret int as native RGBA\". `readPixels()` reads `RGBA`/`UNSIGNED_BYTE` and immediately calls `PGL.nativeToJavaARGB`. The reverse path (`drawPixels`) calls `PGL.javaToNativeARGB` before writing to the FBO.\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGraphicsOpenGL.java#L5389-L5411\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGL.java#L1646-L1653\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGraphicsOpenGL.java#L5437\n\n- GL resources themselves are fixed to 8‑bit RGBA, renderbuffers/textures are always allocated as `RGBA8`, and vertex colors/materials are uploaded as `UNSIGNED_BYTE` attributes.\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/FrameBuffer.java#L392\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGL.java#L2854\nhttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PShapeOpenGL.java#L5517-L5520\n\n- Even our new WebGPU backend just forwards the existing `fillR`/`fillG`/`fillB`/`fillA` values that originate from the same 8‑bit `colorCalc` method flow, so it inherits every limitation and would otherwise have to reimplement basically all of the existing API.\nhttps://github.com/processing/processing4/blob/1ee012e7942f0cfa9029151c6d7a1b992c044d0c/core/src/processing/webgpu/PGraphicsWebGPU.java#L56\n\n## Why is this an issue / What this limits\n\nAt a high level, while 8-bit textures may have been the norm in the early 2000s, the assumption has basically flipped. Modern GPUs execute most shading math in 32-bit lanes regardless of the source format, so even when sampling from an 8-bit texture the ALUs are still getting their parallelism over 32-bit registers. Unless you're explicitly using packed instructions (which is rare for generalist graphics work), the only real thing sthat 8-bit gets is memory bandwidth, which mostly only matters on low-end mobile. Everywhere else the industry is moving toward mixed precision (e.g. FP16 tensor cores for ML matmul ops) because compute cost is no longer tied to per-channel bit depth.\n\nHowever, specifically relevant to art, the lack of floating point textures is severe limitation to the following techniques.\n\n### Installation art\n\nStuff like motion tracking, heatmap accumulation, or any \"paint with time\" piece depends on adding and accumulating tiny deltas every frame. In 8-bit those changes round away, so small movement never shows up and trails die instantly. Float buffers let artists integrate small movement over minutes or hours and only quantize when sending to the projector. Multi-projector setups also have problems, feathering overlaps, gamma correcting different units, and warping/projection mapping content through multiple correction stages all require smooth ramps. Quantizing each stage to 256 buckets produces visible steps, which is especially problematic in dark rooms typical for these kinds of installs. Hardware sensorb ased work (think depth cameras, environmental sensors, etc) typically rely on filters and other post-processing to be useful for producing a final render for the projector.\n\n### Generative art\n\nFeedback is super common in generative art, ie read the last frame, do some texture processing, write it back, repeat. In 8-bit every read-modify-write cycle loses precision, so the loop collapses after a few iterations and colors wander off due to rounding and look bad if they work at all. Float textures keep temporal buffers alive and stable which is why applications like TouchDesigner or vvvv typically default to them. Popular algos like reaction-diffusion, fluid sims, and cellular automata also add/subtract tiny gradients every step. Quantization steps in 8-bit makes patterns fall apart. Floats match the reference equations. Even simple particles need floats to ensure the motion looks and particle sim parameters work from frame to frame. Layering hundreds of low-alpha sprites in 8-bit will jump between \"invisible\" and \"too strong\" because the intermediate alpha values simply don't exist. For people who care about color grading or LUT work, esp to reference stuff like mockups made by designers which is important in professional settings working on a team, you need headroom. Doing the math in 8-bit crushes blacks and create midtone bands which will make your designers cry.\n\n### Modern 3D graphics techniques\n\nIn the more game oriented world, TAA and other AA techniques assume you can accumulate subpixel jitter over many frames without the values collapsing. When you use 8-bit components, the first couple of blends push dark tones to zero and you're left with banding or ghost trails. Modern engines accumulate in 16/32-bit floats and only clamp when tonemapping out to the display. The same is true for HDR stuff like bloom, tone mapping, or PBR shading that need to push energy past 1.0, do postprocessing, then compress the result. With 0-255 you just clip to white and the math breaks. Deferred renderers and screenspace effect passes also suffer when encode normals, roughness, or depth in 8-bit and SSAO/SSR immediately reveal the quantization steps. Backends like Metal/Vulkan assume you can request `RGBA16F`, `R11G11B10F`, depth-only attachments, etc. which the user may want to display / debug. There's interesting Processing style techniques here that simply aren't possible atm.\n\n## Conclusion\n\nChanging Processing's texture format and color math is a breaking change at basically all levels of the existing codebase but is crucially important for modern graphics techniques.","author":{"url":"https://github.com/tychedelia","@type":"Person","name":"tychedelia"},"datePublished":"2025-11-13T23:07:25.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/1324/processing4/issues/1324"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:1693f4ab-7d7e-9a27-df9f-589c7af5c38d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA5FA:2758F1:745A5C:A58C01:696F8A84
html-safe-nonceaec1ba1a962728a0a6449d3ac49c9f62d579e5327e99cd101d1894e767135562
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNUZBOjI3NThGMTo3NDVBNUM6QTU4QzAxOjY5NkY4QTg0IiwidmlzaXRvcl9pZCI6IjgyMjcxNzc4NDkzNDgxMjI5MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac79ab7d687acae396ce8326efe5f67b63a3b830d020a0a4f8b1e1c357fb66740e
hovercard-subject-tagissue:3623186872
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/processing/processing4/1324/issue_layout
twitter:imagehttps://opengraph.githubassets.com/0ddf50758c56566a0f1d6af9422f80afc4f5b032c7661566bc863e3d572e4a6e/processing/processing4/issues/1324
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/0ddf50758c56566a0f1d6af9422f80afc4f5b032c7661566bc863e3d572e4a6e/processing/processing4/issues/1324
og:image:altProcessing is tightly coupled to ARGB 8-bit textures via the PImage class hierarchy. When the project started, the only crossplatform drawing lib available in the JDK was AWT/Java2D. Those APIs exp...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernametychedelia
hostnamegithub.com
expected-hostnamegithub.com
None0ca8d8c65612640b9a1a588b3eed68222ca723ed2d028b18fe81b28936d535eb
turbo-cache-controlno-preview
go-importgithub.com/processing/processing4 git https://github.com/processing/processing4.git
octolytics-dimension-user_id1617169
octolytics-dimension-user_loginprocessing
octolytics-dimension-repository_id844382769
octolytics-dimension-repository_nwoprocessing/processing4
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id844382769
octolytics-dimension-repository_network_root_nwoprocessing/processing4
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release95f60616ce2765d1114fe6da4af405a58c6d26d2
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/processing/processing4/issues/1324#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fprocessing%2Fprocessing4%2Fissues%2F1324
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fprocessing%2Fprocessing4%2Fissues%2F1324
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=processing%2Fprocessing4
Reloadhttps://patch-diff.githubusercontent.com/processing/processing4/issues/1324
Reloadhttps://patch-diff.githubusercontent.com/processing/processing4/issues/1324
Reloadhttps://patch-diff.githubusercontent.com/processing/processing4/issues/1324
processing https://patch-diff.githubusercontent.com/processing
processing4https://patch-diff.githubusercontent.com/processing/processing4
Please reload this pagehttps://patch-diff.githubusercontent.com/processing/processing4/issues/1324
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fprocessing%2Fprocessing4
Fork 126 https://patch-diff.githubusercontent.com/login?return_to=%2Fprocessing%2Fprocessing4
Star 311 https://patch-diff.githubusercontent.com/login?return_to=%2Fprocessing%2Fprocessing4
Code https://patch-diff.githubusercontent.com/processing/processing4
Issues 221 https://patch-diff.githubusercontent.com/processing/processing4/issues
Pull requests 35 https://patch-diff.githubusercontent.com/processing/processing4/pulls
Actions https://patch-diff.githubusercontent.com/processing/processing4/actions
Projects 2 https://patch-diff.githubusercontent.com/processing/processing4/projects
Wiki https://patch-diff.githubusercontent.com/processing/processing4/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/processing/processing4/security
Please reload this pagehttps://patch-diff.githubusercontent.com/processing/processing4/issues/1324
Insights https://patch-diff.githubusercontent.com/processing/processing4/pulse
Code https://patch-diff.githubusercontent.com/processing/processing4
Issues https://patch-diff.githubusercontent.com/processing/processing4/issues
Pull requests https://patch-diff.githubusercontent.com/processing/processing4/pulls
Actions https://patch-diff.githubusercontent.com/processing/processing4/actions
Projects https://patch-diff.githubusercontent.com/processing/processing4/projects
Wiki https://patch-diff.githubusercontent.com/processing/processing4/wiki
Security https://patch-diff.githubusercontent.com/processing/processing4/security
Insights https://patch-diff.githubusercontent.com/processing/processing4/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/processing/processing4/issues/1324
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/processing/processing4/issues/1324
Floating point / HDR texture supporthttps://patch-diff.githubusercontent.com/processing/processing4/issues/1324#top
https://github.com/tychedelia
https://github.com/tychedelia
tychedeliahttps://github.com/tychedelia
on Nov 13, 2025https://github.com/processing/processing4/issues/1324#issue-3623186872
TYPE_INT_ARGB/TYPE_INT_RGBhttps://docs.oracle.com/javase/8/docs/api/java/awt/image/BufferedImage.html#getRGB-int-int-
java.awt.Colorhttps://docs.oracle.com/javase/8/docs/api/java/awt/Color.html
processing4/core/src/processing/core/PImage.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PImage.java#L92
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/core/PApplet.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PApplet.java#L222
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/PGraphicsOpenGL.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGraphicsOpenGL.java#L5379-L5386
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/core/PGraphics.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PGraphics.java#L7631-L7638
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/core/PGraphics.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PGraphics.java#L7680-L7735
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
https://github.com/processing/processing4/blob/main/core/src/processing/core/PShape.java#L3514https://github.com/processing/processing4/blob/main/core/src/processing/core/PShape.java#L3514
processing4/core/src/processing/core/PImage.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/core/PImage.java#L2471-L2480
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/Texture.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L303-L305
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/Texture.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L346-L347
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/Texture.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L1000-L1061
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/Texture.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/Texture.java#L792-L795
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/PGraphicsOpenGL.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGraphicsOpenGL.java#L5389-L5411
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/PGL.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGL.java#L1646-L1653
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/PGraphicsOpenGL.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGraphicsOpenGL.java#L5437
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/FrameBuffer.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/FrameBuffer.java#L392
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/PGL.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PGL.java#L2854
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/opengl/PShapeOpenGL.javahttps://github.com/processing/processing4/blob/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137/core/src/processing/opengl/PShapeOpenGL.java#L5517-L5520
11f1a1ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/11f1a1e666c7cec6ddf483c5c8fffb5b9009a137
processing4/core/src/processing/webgpu/PGraphicsWebGPU.javahttps://github.com/processing/processing4/blob/1ee012e7942f0cfa9029151c6d7a1b992c044d0c/core/src/processing/webgpu/PGraphicsWebGPU.java#L56
1ee012ehttps://patch-diff.githubusercontent.com/processing/processing4/commit/1ee012e7942f0cfa9029151c6d7a1b992c044d0c
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.