HALX99
138781151a
Fix depth stencil state/desc ( #321 )
...
* Fix ds state
* fix 3d object not render
* Update DepthStencilStateGL.cpp
* fix ds, not complete
* fix image ref incorrect
* Fix metal captureScreen
* Share ds desc
needs restore properly after non-default render target destroy.
* fix gl compile
* Sync ds desc
* Only set vertex & index buffer once for batch draw
* Add set/get ds desc for renderer
* Refine code style
* Fix RenderTextureTest
a. should restore stencil desc properly
* Sync gl captureNode
* Sync GL
2021-01-31 22:22:52 +08:00
HALX99
46fad08e4c
Revert "Fix #313 "
2021-01-21 12:41:01 +08:00
halx99
ae0c3eddef
Fix #313
...
a. error: depthAttachment PixelFormat (MTLPixelFormatInvalid) and stencilAttachment PixelFormat (MTLPixelFormat Depth32Float_Stencil8) must match.
b. Because we only support D24S8(D32FS8) combined format, so needs check
TargetBuffferFlags::DEPTH_AND_STENCIL when setup depth and stencil
format, otherwise newRenderPipelineWithDescriptor will crash.
2021-01-16 00:01:21 +08:00
halx99
208d07697f
Fix next drawable maybe nil crash[ci build] ( #310 )
2020-12-17 15:31:16 +08:00
HALX99
0d04e20b50
fix metal znear range for viewport
...
https://developer.apple.com/documentation/metal/mtlrendercommandencoder/1515527-setviewport?language=objc
2020-11-23 09:30:51 +08:00
HALX99
d4284b880e
Update comment
2020-11-06 09:33:26 +08:00
halx99
a2a7166808
[Metal] matching depth stencil state
2020-11-06 08:56:25 +08:00
halx99
8e35201726
fix #255 [ci build]
2020-11-05 22:51:33 +08:00
halx99
449d8ce0e2
fix #255 [ci build]
2020-11-05 22:24:30 +08:00
halx99
975ef2ff61
Lock name
2020-10-24 21:57:36 +08:00
halx99
a14b7cc91e
Only needs updateUniformID when set a unstable uniform variable
2020-10-23 15:07:18 +08:00
halx99
62108b40b1
Since v4, no needs callback uniform, so mark setCallbackUniform deprecated
2020-10-23 11:57:17 +08:00
halx99
b8834bc086
Finsih rename
2020-10-22 10:58:10 +08:00
halx99
dd98b13a9d
Refine pixel format
...
a. make RGB565, RGB5A1 identical between GL and MTL backend
b. make texture internal format compatible on GLES-2.0 ONLY GPU devices
2020-10-20 23:27:20 +08:00
halx99
543ead7111
Fix depth stencil state and pipeline state mismatch
2020-09-25 23:16:48 +08:00
HALX99
235f09f635
Refactor pixel format manipulate ( #217 )
...
* PixelFormat use table
* Correct PixelFormat name to match 'GL_LUMINANCE'
* Up
* fix cube update texture enum
* linux build
* Refine ci
* fix linux build
* Remove unused function, match mtl framebuffer pixel format
* readPixels always RGBA format
* fix ci for linux
* fix linux build
* Remove unused functions
* fix travis
* fix android ci
* Update config.json
* linux glad
* Update CCGLViewImpl-desktop.cpp
* fix linux build
* Fix linux build
* Link issue [skip appveyor][skip travis]
* Update CMakeLists.txt
* Refine GL enums use
* Update test case name [skip appveyor][skip travis]
* fix linux link issue
* for mtl
* fix ci
* Tidy pixelformat enums
* fix ci
* fix rgba8 to abgr4 error
* fix ci
* fix ci for GLES
* Fix linux build, require glibc-2.27+
* Use properly dist for travis [skip appveyor]
* fix linux build [skip appveyor]
* Update install-deps-linux.sh
* Remove unused members for pixel block info, update external to v73
* Sync from compile linux warnings
* Remove unused check, and PixelFormat::A8 is ordinary format, not compressed format
* metal doesn't support rgb8 (#3 )
* Update CCTexture2D.cpp
* Refine code
* Pixel Format Descriptor Table
* fix ci
* BGR5A1
* Simplfy texture format convert function name
* Update
* rgba4 match mtl render format
* Add note about RGBA4
* Remove unused function
* fix osx
* Already converted at texture2d
* Clearly comment
* fixup
2020-09-25 11:07:56 +08:00
HALX99
09937c97a7
Refactor render pipeline state ( #211 )
...
* Refactor pipeline state
* Cache DepthStencil state for MTL renderer backend
2020-09-22 16:32:17 +08:00
halx99
c5c7de9e1d
Remove unused param for setRenderPipeline
2020-09-21 22:35:18 +08:00
HALX99
5a32bcfdaf
RenderTarget abstract, in-progress ( #210 )
...
RenderTarget abstract
2020-09-21 22:10:50 +08:00
halx99
9c6a3d2837
Metal screen framebuffer only set/restore
2020-09-13 12:55:35 +08:00
halx99
c4c64ffd3f
No need enqueue, commit will do it automatically
2020-09-12 16:44:16 +08:00
halx99
682b4f685e
Refine code
2020-09-12 15:34:09 +08:00
halx99
378e38de11
Add more clearly comment [skip appveyor]
2020-09-11 20:17:31 +08:00
halx99
0e99525283
Remove unused comment
2020-09-11 12:14:40 +08:00
halx99
874946fccb
Tidy code
2020-09-11 00:10:44 +08:00
halx99
fdd8321d28
Remove unused API, TODO: unify to Utils::readPixels
2020-09-10 23:11:43 +08:00
halx99
a7b0850d2f
Add comment
2020-09-10 21:41:52 +08:00
halx99
2a50ae6cf8
Refine code
2020-09-10 21:38:24 +08:00
halx99
f6a8d993fc
Refactor capture, fix data race for apple metal reanderer backend
2020-09-10 21:14:28 +08:00
halx99
4dd7f6aab6
fix 193
2020-09-10 18:12:46 +08:00
HALX99
36c25dc889
Should set _mtlCommandBuffer to nil after release
2020-09-03 22:26:21 +08:00
HALX99
7a2f91e514
ASTC6x6 support and more comment about bpp usage in engine ( #191 )
...
* ASTC6x6 support and more comment abount bpp usage in engine
* fix log output
* Comment astc compression tool download url
* Add command line comment for astcenc tool [skip travis][skip appveyor]
* Add astc_6x6 test image[skip appveyor][skip travis]
* astc_6x6 mtl
* Refine log info[skip appveyor][skip travis]
* Empty line[skip appveyor][skip travis]
2020-09-03 18:01:40 +08:00
halx99
5bfce4bed4
Add copyright notice [skip appveyor][skip travis]
2020-09-01 13:24:45 +08:00
halx99
f3c17427aa
More clearly ETC1 format, sync enums for ETC1, correct somethings
2020-09-01 11:43:03 +08:00
HALX99
4d9206e402
ETC2 feature check for metal
2020-09-01 00:03:49 +08:00
halx99
7872bb1b97
ETC2 Metal support
2020-08-31 15:45:05 +08:00
halx99
e6108d111a
Fix ASTC bytesPerRow calculation
2020-08-30 00:11:33 +08:00
halx99
e0be836453
More clearly comment
2020-08-29 19:51:42 +08:00
halx99
ef755ba3ad
More clearly comment for multi-textures support
2020-08-29 17:39:17 +08:00
halx99
baa4447973
fix multi-texture2d support
2020-08-29 16:56:48 +08:00
HALX99
b8986f339b
Merge pull request #58 from c4games/mmt-ios
...
Make multi-meta-textures feature works on Apple Metal.
2020-02-15 20:51:20 +08:00
halx99
effc75bd78
Refine sources
2020-02-15 10:48:44 +08:00
halx99
8aee15f7c0
fix ci error
2020-02-15 03:10:01 +08:00
halx99
78f9dfa8ef
Remove unnecessary constructors.
2020-02-15 02:58:41 +08:00
halx99
3bea76ee4d
Refine STMGT
2020-02-15 02:36:02 +08:00
halx99
4c9e87ac51
Move maxTextureIdx to base texture class
2020-02-14 23:42:05 +08:00
halx99
54fecde8a2
Make multi-meta-textures support works on Metal.
2020-02-14 21:40:33 +08:00
halx99
a460438c3b
Make astc works on ios platform.
2020-02-14 19:10:01 +08:00
halx99
d36f53e567
multi texture GPU handler for compressed image
2019-12-01 23:26:11 +08:00
coulsonwang
85ac704687
fix incorrect hash structure for RenderPipeline ( #20373 )
...
* fix incorrect hash structure for RenderPipeline
2019-11-30 16:54:50 +08:00